HomeSort by relevance Sort by last modified time
    Searched refs:logId (Results 1 - 22 of 22) sorted by null

  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
CTLogStore.java 26 CTLogInfo getKnownLog(byte[] logId);
SignedCertificateTimestamp.java 48 private final byte[] logId;
57 public SignedCertificateTimestamp(Version version, byte[] logId,
61 this.logId = logId;
72 return logId;
CTLogInfo.java 37 private final byte[] logId;
44 this.logId = MessageDigest.getInstance("SHA-256")
60 return logId;
CTLogStoreImpl.java 93 public CTLogInfo getKnownLog(byte[] logId) {
94 ByteBuffer buf = ByteBuffer.wrap(logId);
103 log = findKnownLog(logId);
113 private CTLogInfo findKnownLog(byte[] logId) {
114 String filename = hexEncode(logId);
130 if (Arrays.equals(logId, log.getID())) {
  /system/core/liblog/
local_logger.c 43 static int writeToLocalAvailable(log_id_t logId);
45 static int writeToLocalWrite(log_id_t logId, struct timespec* ts,
97 log_id_t logId;
187 log_id_t logId = element->logId;
190 log->number[logId]++;
191 log->size[logId] += element->len;
192 log->totalSize[logId] += element->len;
194 if (log->last[logId] == &log->head) {
195 log->last[logId] = list_tail(&log->head)
    [all...]
pmsg_writer.c 39 static int pmsgAvailable(log_id_t logId);
40 static int pmsgWrite(log_id_t logId, struct timespec* ts, struct iovec* vec,
75 static int pmsgAvailable(log_id_t logId) {
76 if (logId > LOG_ID_SECURITY) {
79 if ((logId != LOG_ID_SECURITY) && (logId != LOG_ID_EVENTS) &&
99 static int pmsgWrite(log_id_t logId, struct timespec* ts, struct iovec* vec,
108 if ((logId == LOG_ID_EVENTS) && !__android_log_is_debuggable()) {
147 header.id = logId;
206 LIBLOG_ABI_PRIVATE ssize_t __android_log_pmsg_file_write(log_id_t logId,
    [all...]
stderr_write.c 47 static int stderrAvailable(log_id_t logId);
48 static int stderrWrite(log_id_t logId, struct timespec* ts, struct iovec* vec,
143 static int stderrAvailable(log_id_t logId) {
144 if ((logId >= LOG_ID_MAX) || (logId == LOG_ID_KERNEL)) {
150 static int stderrWrite(log_id_t logId, struct timespec* ts, struct iovec* vec,
172 log_msg.entry.lid = logId;
185 if ((logId == LOG_ID_EVENTS) || (logId == LOG_ID_SECURITY)) {
logger_read.c 53 return ((struct android_log_logger*)logger)->logId;
90 log_id_t logId = logger->logId;
92 if ((logId == LOG_ID_SECURITY) && (__android_log_uid() != AID_SYSTEM)) {
96 (!transport->available || (transport->available(logId) >= 0))) {
97 logMask |= 1 << logId;
135 if ((transp->logMask & (1 << logger_internal->logId)) && \
272 struct logger_list* logger_list, log_id_t logId) {
277 if (!logger_list_internal || (logId >= LOG_ID_MAX)) {
282 if (logger->logId == logId)
    [all...]
logd_writer.c 45 static int logdAvailable(log_id_t LogId);
48 static int logdWrite(log_id_t logId, struct timespec* ts, struct iovec* vec,
114 static int logdAvailable(log_id_t logId) {
115 if (logId >= LOG_ID_MAX || logId == LOG_ID_KERNEL) {
127 static int logdWrite(log_id_t logId, struct timespec* ts, struct iovec* vec,
224 header.id = logId;
284 if (logId == LOG_ID_SECURITY) {
logger.h 46 int (*available)(log_id_t logId); /* Does not cause resources to be taken */
50 int (*write)(log_id_t logId, struct timespec* ts, struct iovec* vec,
63 int (*available)(log_id_t logId);
114 log_id_t logId;
logd_reader.c 46 static int logdAvailable(log_id_t LogId);
92 static int logdAvailable(log_id_t logId) {
93 if (logId >= LOG_ID_MAX) {
96 if (logId == LOG_ID_SECURITY) {
271 snprintf(buf, buf_size, msg, logger ? logger->logId : (unsigned)-1);
371 snprintf(buf, sizeof(buf), "setLogSize %d %zu", logger->logId, size);
423 n = snprintf(cp, remaining, " %d", logger->logId);
504 ret = snprintf(cp, remaining, "%c%u", c, logger->logId);
pmsg_reader.c 31 static int pmsgAvailable(log_id_t logId);
59 static int pmsgAvailable(log_id_t logId) {
60 if (logId > LOG_ID_SECURITY) {
273 __android_log_pmsg_file_read(log_id_t logId, char prio, const char* prefix,
310 if (logId != LOG_ID_ANY) {
311 transp.logMask = (1 << logId);
properties.c 600 LIBLOG_ABI_PRIVATE unsigned long __android_logger_get_buffer_size(log_id_t logId) {
632 android_log_id_to_name(logId));
634 android_log_id_to_name(logId));
  /bootable/recovery/
rotate_logs.h 26 ssize_t logbasename(log_id_t /* logId */,
33 log_id_t logId,
rotate_logs.cpp 35 log_id_t /* logId */,
49 log_id_t logId,
56 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
65 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
85 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
  /system/core/liblog/include/private/
android_logger.h 116 ssize_t __android_log_pmsg_file_write(log_id_t logId, char prio,
124 typedef ssize_t (*__android_log_pmsg_file_read_fn)(log_id_t logId, char prio,
129 ssize_t __android_log_pmsg_file_read(log_id_t logId, char prio,
150 unsigned long __android_logger_get_buffer_size(log_id_t logId);
  /external/conscrypt/platform/src/test/java/org/conscrypt/ct/
CTVerifierTest.java 47 public CTLogInfo getKnownLog(byte[] logId) {
48 if (Arrays.equals(logId, log.getID())) {
  /frameworks/base/core/java/android/util/
Log.java 297 static int wtf(int logId, String tag, String msg, Throwable tr, boolean localStack,
303 int bytes = printlns(logId, ERROR, tag, msg, localStack ? what : tr);
308 static void wtfQuiet(int logId, String tag, String msg, boolean system) {
  /bootable/recovery/tests/manual/
recovery_test.cpp 43 static ssize_t __pmsg_fn(log_id_t logId, char prio, const char *filename,
45 EXPECT_EQ(LOG_ID_SYSTEM, logId);
  /frameworks/support/samples/SupportLeanbackShowcase/libs/
picasso-2.5.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/
picasso-2.5.2.jar 
  /system/core/liblog/tests/
liblog_test.cpp     [all...]

Completed in 735 milliseconds