Searched refs:buff (Results 1 - 11 of 11) sorted by relevance

/system/media/alsa_utils/
H A Dalsa_logging.c39 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 DsocketTag.cpp63 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 Dbtif_pan_internal.h105 const char* buff, UINT16 size, BOOLEAN ext, BOOLEAN forward);
/system/bt/stack/pan/
H A Dpan_utils.c331 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 Dtransport.cpp137 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 Dsysdeps_win32.cpp885 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 DBandwidthController.cpp305 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 Dinit.cpp775 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 Dgatt_utils.c1477 UINT8 buff[60]; local
1478 UINT8 *p = buff;
1495 (UINT32) (p - buff), buff);
1502 (UINT32) (p - buff), buff);
/system/bt/stack/btm/
H A Dbtm_inq.c2714 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 Dcryptfs.c657 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));

Completed in 117 milliseconds