Searched refs:payload (Results 1 – 5 of 5) sorted by relevance
/system/core/include/cutils/ |
D | logd.h | 41 int __android_log_bwrite(int32_t tag, const void *payload, size_t len); 42 int __android_log_btwrite(int32_t tag, char type, const void *payload,
|
D | log.h | 412 #define android_bWriteLog(tag, payload, len) \ argument 413 __android_log_bwrite(tag, payload, len) 414 #define android_btWriteLog(tag, type, payload, len) \ argument 415 __android_log_btwrite(tag, type, payload, len)
|
/system/core/liblog/ |
D | logd_write.c | 238 int __android_log_bwrite(int32_t tag, const void *payload, size_t len) in __android_log_bwrite() argument 244 vec[1].iov_base = (void*)payload; in __android_log_bwrite() 255 int __android_log_btwrite(int32_t tag, char type, const void *payload, in __android_log_btwrite() argument 264 vec[2].iov_base = (void*)payload; in __android_log_btwrite()
|
/system/core/adb/ |
D | protocol.txt | 28 header followed (optionally) by a payload. The header consists of 6 35 unsigned data_length; /* length of payload (0 is allowed) */ 36 unsigned data_crc32; /* crc32 of data payload */ 40 Receipt of an invalid message header, corrupt message payload, or an 46 detail. Their format is COMMAND(arg0, arg1, payload) where the payload 82 destination in the message payload. The local-id may not be zero. 121 remote-id. The payload MUST be <= maxdata in length.
|
D | OVERVIEW.TXT | 86 1. A 4-byte hexadecimal string giving the length of the payload 87 2. Followed by the payload itself.
|