/system/media/alsa_utils/ |
H A D | alsa_logging.c | 39 char buff[BUFF_SIZE]; local 40 buff[0] = '\0'; 43 strcat(buff, "["); 47 strcat(buff, (mask->bits[slot_index] & bit_mask) != 0 ? "1" : "0"); 51 strcat(buff, ","); 54 strcat(buff, "]"); 56 ALOGV("%s: mask:%s", mask_name, buff);
|
/system/extras/tests/iptables/qtaguid/ |
H A D | socketTag.cpp | 63 char *buff; local 70 vasprintf(&buff, fmt, argp); 72 res = write(ctrl, buff, strlen(buff)); 73 testPrintI("cmd: '%s' res=%d %d/%s", buff, res, errno, strerror(errno)); 75 free(buff); 138 char *buff; local 167 asprintf(&buff, match_template, full_tag | uid, uid); 168 testPrintI("looking for '%s'", buff); 169 pos = strstr(ctrl_data, buff); [all...] |
/system/bt/btif/include/ |
H A D | btif_pan_internal.h | 105 const char* buff, UINT16 size, BOOLEAN ext, BOOLEAN forward);
|
/system/bt/stack/pan/ |
H A D | pan_utils.c | 331 char buff[200]; local 339 sprintf (buff, "%d state %d, handle %d, src 0x%x, dst 0x%x, BD %x.%x.%x.%x.%x.%x", 344 PAN_TRACE_DEBUG (buff);
|
/system/core/adb/ |
H A D | transport.cpp | 137 char buff[8]; local 139 snprintf(buff, sizeof buff, "fd=%d", fd); 140 name = buff; 165 char buff[8]; local 167 snprintf(buff, sizeof buff, "fd=%d", fd); 168 name = buff; 925 char buff[32]; local 928 snprintf(buff, sizeo [all...] |
H A D | sysdeps_win32.cpp | 885 unsigned char buff[ BIP_BUFFER_SIZE ]; member in struct:BipBufferRec_ 971 memcpy( bip->buff + bip->a_end, src, avail ); 993 memcpy( bip->buff + bip->b_end, src, avail ); 1064 memcpy( dst, bip->buff + bip->a_start, avail ); 1081 memcpy( dst, bip->buff, avail );
|
/system/netd/server/ |
H A D | BandwidthController.cpp | 305 char *buff; local 325 asprintf(&buff, "%s %s -m owner --uid-owner %d", opFlag, chain, uid); 326 res = buff; 327 free(buff); 478 char *buff; local 500 asprintf(&buff, "%s bw_costly_%s -m quota2 ! --quota %" PRId64" --name %s", opFlag, costName, quota, 502 res = buff; 503 free(buff);
|
/system/core/init/ |
H A D | init.cpp | 775 char buff[PROP_NAME_MAX]; local 776 int len = snprintf( buff, sizeof(buff), "ro.kernel.%s", name ); 778 if (len < (int)sizeof(buff)) 779 property_set( buff, value );
|
/system/bt/stack/gatt/ |
H A D | gatt_utils.c | 1477 UINT8 buff[60]; local 1478 UINT8 *p = buff; 1495 (UINT32) (p - buff), buff); 1502 (UINT32) (p - buff), buff);
|
/system/bt/stack/btm/ |
H A D | btm_inq.c | 2714 char buff[LEN_UUID_128 * 2 + 1]; local 2753 sprintf(buff + xx*2, "%02X", *(p_uuid_list + yy * LEN_UUID_128 + xx)); 2754 BTM_TRACE_DEBUG(" 0x%s", buff);
|
/system/vold/ |
H A D | cryptfs.c | 657 static inline int unix_read(int fd, void* buff, int len) argument 659 return TEMP_FAILURE_RETRY(read(fd, buff, len)); 662 static inline int unix_write(int fd, const void* buff, int len) argument 664 return TEMP_FAILURE_RETRY(write(fd, buff, len));
|