LogcatReceiver

public class LogcatReceiver
extends Object implements ILogcatReceiver

java.lang.Object
   ↳ com.android.tradefed.device.LogcatReceiver


バックグラウンドで logcat を収集するクラス。デバイスが動作しなくなっても、引き続き logcat をキャプチャする 比較できます。

概要

パブリック コンストラクタ

LogcatReceiver(ITestDevice device, String logcatCmd, long maxFileSize, int logStartDelay)

指定された logcat コマンドでインスタンスを作成する

LogcatReceiver(ITestDevice device, long maxFileSize, int logStartDelay)

デフォルトの logcat「threadtime」を使用してインスタンスを作成する形式

パブリック メソッド

void clear()
static String getDefaultLogcatCmd(ITestDevice device)

デフォルトの logcat コマンドを取得し、API レベル > の場合にのみ uid 形式を追加します24.

InputStreamSource getLogcatData(int maxBytes, int offset)

オフセットを指定して現在の logcat バッファを返します。

InputStreamSource getLogcatData(int maxBytes)
InputStreamSource getLogcatData()
void start()
void stop()

パブリック コンストラクタ

LogcatReceiver

public LogcatReceiver (ITestDevice device, 
                String logcatCmd, 
                long maxFileSize, 
                int logStartDelay)

指定された logcat コマンドでインスタンスを作成する

パラメータ
device ITestDevice: Logcat を開始するデバイス

logcatCmd String: 実行する logcat コマンド(「logcat」部分を含む)。詳細を表示します。 logcat ヘルプ メッセージで使用可能なオプション

maxFileSize long: 最大ファイルサイズ。サイズに達すると、それ以前の行は破棄されます

logStartDelay int: デバイスがオンラインになってから待機する遅延時間

LogcatReceiver

public LogcatReceiver (ITestDevice device, 
                long maxFileSize, 
                int logStartDelay)

デフォルトの logcat「threadtime」を使用してインスタンスを作成する形式

パラメータ
device ITestDevice: Logcat を開始するデバイス

maxFileSize long: 最大ファイルサイズ。サイズに達すると、それ以前の行は破棄されます

logStartDelay int: デバイスがオンラインになってから待機する遅延時間

パブリック メソッド

消去

public void clear ()

getDefaultLogcatCmd

public static String getDefaultLogcatCmd (ITestDevice device)

デフォルトの logcat コマンドを取得し、API レベル > の場合にのみ uid 形式を追加します24.

パラメータ
device ITestDevice

戻り値
String

getLogcatData

public InputStreamSource getLogcatData (int maxBytes, 
                int offset)

オフセットを指定して現在の logcat バッファを返します。

パラメータ
maxBytes int: 返されるバッファの最大サイズ

offset int: バッファ全体のオフセット。

戻り値
InputStreamSource このオフセットから始まる logcat バッファ。

getLogcatData

public InputStreamSource getLogcatData (int maxBytes)

パラメータ
maxBytes int

戻り値
InputStreamSource

getLogcatData

public InputStreamSource getLogcatData ()

戻り値
InputStreamSource

start

public void start ()

経由地

public void stop ()