Searched refs:logFields (Results 1 – 2 of 2) sorted by relevance
60 public static void log(LogFields logFields) { in log() argument63 .writeInt(logFields.getApiType()) in log()64 .writeInt(logFields.getUriType()) in log()65 .writeInt(getCallerType(logFields.isCallerIsSyncAdapter())) in log()66 .writeInt(getResultType(logFields.getException())) in log()67 .writeInt(logFields.getResultCount()) in log()68 .writeLong(getLatencyMicros(logFields.getStartNanos())) in log()70 .writeInt(logFields.getMethodCall()) in log()
136 LogFields logFields = new LogFields(apiType, uriType, callerIsSyncAdapter, startNanos); in build() local137 logFields.resultCount = this.resultCount; in build()138 logFields.exception = this.exception; in build()139 logFields.resultUri = this.resultUri; in build()140 logFields.methodCall = this.methodCall; in build()141 return logFields; in build()