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

  /external/chromium_org/third_party/leveldatabase/src/db/
memtable.cc 91 size_t val_size = value.size(); local
95 VarintLength(val_size) + val_size;
102 p = EncodeVarint32(p, val_size);
103 memcpy(p, value.data(), val_size);
104 assert((p + val_size) - buf == encoded_len);
  /external/qemu/android/utils/
misc.h 93 * val_size - Size of the 'value' string buffer.
99 extern int get_token_value(const char* params, const char* name, char* value, int val_size);
misc.c 221 get_token_value(const char* params, const char* name, char* value, int val_size)
257 if ((len + 1) <= val_size) {
273 const int val_size = get_token_value(params, name, &tmp, 0); local
274 if (val_size < 0) {
276 return val_size;
280 *value = (char*)malloc(val_size);
283 __FUNCTION__, val_size);
286 res = get_token_value(params, name, *value, val_size);
  /external/bluetooth/bluedroid/btif/src/
btif_core.c 370 int val_size = 0; local
400 val_size = sizeof(val);
401 if(btif_config_get_str("Local", "Adapter", "Address", val, &val_size))
448 val_size = sizeof(val);
449 if (btif_config_get_str("Local", "Adapter", "Address", val, &val_size))
    [all...]
  /external/tcpdump/
print-ppp.c 801 int val_size, name_size, msg_size; local
843 val_size = *p; /* value size */
845 if (length - (p - p0) < val_size)
848 for (i = 0; i < val_size; i++) {
    [all...]

Completed in 229 milliseconds