Home
last modified time | relevance | path

Searched refs:ltype (Results 1 – 3 of 3) sorted by relevance

/system/chre/apps/nearby/third_party/nanopb/
Dpb.h429 #define PB_REQUIRED_STATIC(tag, st, m, fd, ltype, ptr) \ argument
431 tag, PB_ATYPE_STATIC | PB_HTYPE_REQUIRED | ltype, fd, 0, \
436 #define PB_OPTIONAL_STATIC(tag, st, m, fd, ltype, ptr) \ argument
438 tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, fd, \
442 #define PB_SINGULAR_STATIC(tag, st, m, fd, ltype, ptr) \ argument
444 tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, fd, 0, \
450 #define PB_REPEATED_STATIC(tag, st, m, fd, ltype, ptr) \ argument
452 tag, PB_ATYPE_STATIC | PB_HTYPE_REPEATED | ltype, fd, \
458 #define PB_REQUIRED_POINTER(tag, st, m, fd, ltype, ptr) \ argument
460 tag, PB_ATYPE_POINTER | PB_HTYPE_REQUIRED | ltype, fd, 0, \
[all …]
/system/core/debuggerd/libdebuggerd/
Dutility.cpp49 bool is_allowed_in_logcat(enum logtype ltype) { in is_allowed_in_logcat() argument
50 return (ltype == HEADER) || (ltype == REGISTERS) || (ltype == BACKTRACE); in is_allowed_in_logcat()
67 void _LOG(log_t* log, enum logtype ltype, const char* fmt, ...) { in _LOG() argument
70 _VLOG(log, ltype, fmt, ap); in _LOG()
75 void _VLOG(log_t* log, enum logtype ltype, const char* fmt, va_list ap) { in _VLOG() argument
77 bool write_to_logcat = is_allowed_in_logcat(ltype) in _VLOG()
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/
Dutility.h71 void _LOG(log_t* log, logtype ltype, const char* fmt, ...) __attribute__((format(printf, 3, 4)));
72 void _VLOG(log_t* log, logtype ltype, const char* fmt, va_list ap);