HomeSort by relevance Sort by last modified time
    Searched defs:name_size (Results 1 - 25 of 28) sorted by null

1 2

  /external/compiler-rt/lib/asan/
asan_report.h 30 uptr name_size; member in struct:__asan::AddressDescription
  /external/google-breakpad/src/processor/
fast_source_line_resolver_types.h 82 size_t name_size = strlen(raw) + 1; local
84 address = *(reinterpret_cast<const MemAddr*>(raw + name_size));
86 raw + name_size + sizeof(MemAddr)));
88 raw + name_size + 2 * sizeof(MemAddr)));
90 raw + name_size + 2 * sizeof(MemAddr) + sizeof(int32_t));
105 size_t name_size = strlen(raw) + 1; local
107 address = *(reinterpret_cast<const MemAddr*>(raw + name_size));
109 raw + name_size + sizeof(MemAddr)));
  /external/libmicrohttpd/src/microspdy/
structures.c 464 int32_t name_size; local
514 name_size = strlen(iterator->name);
515 temp = htonl(name_size);
518 strncpy(*stream + offset, iterator->name, name_size);
519 offset += name_size;
560 int32_t name_size; local
582 memcpy(&name_size, stream + offset, 4);
584 name_size = ntohl(name_size);
586 if(NULL == (name = strndup(stream + offset, name_size)))
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
validation_test_input_parser.cc 45 size_t name_size; member in struct:mojo::test::__anon23562::ValidationTestInputParser::DataType
225 if (StartsWith(range, kDataTypes[i].name, kDataTypes[i].name_size)) {
228 std::string(range.first + kDataTypes[i].name_size, range.second));
  /external/protobuf/python/google/protobuf/pyext/
descriptor_pool.cc 174 Py_ssize_t name_size; local
176 if (PyString_AsStringAndSize(arg, &name, &name_size) < 0) {
181 self->pool->FindMessageTypeByName(string(name, name_size));
222 Py_ssize_t name_size; local
224 if (PyString_AsStringAndSize(arg, &name, &name_size) < 0) {
229 self->pool->FindFileByName(string(name, name_size));
240 Py_ssize_t name_size; local
242 if (PyString_AsStringAndSize(arg, &name, &name_size) < 0) {
247 self->pool->FindFieldByName(string(name, name_size));
258 Py_ssize_t name_size; local
275 Py_ssize_t name_size; local
292 Py_ssize_t name_size; local
309 Py_ssize_t name_size; local
    [all...]
descriptor_containers.cc 171 Py_ssize_t name_size; local
172 if (PyString_AsStringAndSize(key, &name, &name_size) < 0) {
182 self, string(name, name_size));
188 Py_ssize_t name_size; local
189 if (PyString_AsStringAndSize(key, &camelcase_name, &name_size) < 0) {
199 self, string(camelcase_name, name_size));
    [all...]
message.cc 2057 Py_ssize_t name_size; local
    [all...]
  /system/extras/showmap/
showmap.cpp 73 const int name_size = strlen(name) + 1; local
74 struct mapinfo* info = reinterpret_cast<mapinfo*>(calloc(1, sizeof(mapinfo) + name_size));
84 strlcpy(info->name, name, name_size);
  /external/llvm/lib/Object/
Archive.cpp 233 uint64_t name_size; local
234 if (name.substr(3).rtrim(' ').getAsInteger(10, name_size))
236 return Data.substr(sizeof(ArchiveMemberHeader), name_size).rtrim('\0');
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 464 unsigned long name_size = sizeof(interf_name); local
465 if (!AdbGetInterfaceName(adb_interface, interf_name, &name_size, true)) {
474 name_size = 0;
475 if (!AdbGetSerialNumber(adb_interface, ser_num, &name_size, true)) {
476 ser_num = reinterpret_cast<char*>(malloc(name_size));
478 if (!AdbGetSerialNumber(adb_interface, ser_num, &name_size, true)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 691 long header_offset, name_size, header_size, header_position; local
764 name_size = PyMarshal_ReadShortFromFile(fp);
765 header_size = 46 + name_size +
771 if (name_size > MAXPATHLEN)
772 name_size = MAXPATHLEN;
775 for (i = 0; i < name_size; i++) {
    [all...]
cPickle.c 2041 int module_size, name_size, res = -1; local
2183 int module_size, name_size, res = -1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 691 long header_offset, name_size, header_size, header_position; local
757 name_size = PyMarshal_ReadShortFromFile(fp);
758 header_size = 46 + name_size +
763 if (name_size > MAXPATHLEN)
764 name_size = MAXPATHLEN;
767 for (i = 0; i < name_size; i++) {
    [all...]
cPickle.c 2010 int module_size, name_size, res = -1; local
2152 int module_size, name_size, res = -1; local
    [all...]
  /external/ppp/pppd/
ipxcp.c 1196 int name_size = cilen - CILEN_NAME; local
1197 if (name_size > sizeof (ho->name))
1198 name_size = sizeof (ho->name) - 1;
1200 memcpy (ho->name, p, name_size);
1201 ho->name [name_size] = '\0';
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-elf.c 503 size_t name_size; local
531 name_size = ELF_FETCH_FIELD (type_functions, ei_class, Shdr,
535 names = XNEWVEC (unsigned char, name_size);
538 names, name_size, &errmsg, err))
556 if (sh_name >= name_size)
  /external/e2fsprogs/misc/
tune2fs.c 607 unsigned int rec_len, name_size; local
626 name_size = ext2fs_dirent_name_len(last_de);
632 name_size ||
665 if (name_size & 3)
666 name_size = (name_size & ~3) + 4;
668 if (rec_len <= (8 + name_size + csum_size)) {
    [all...]
  /external/tcpdump/
print-ppp.c 825 int val_size, name_size, msg_size; local
876 name_size = len - (p - p0);
878 for (i = 0; i < name_size; i++) {
    [all...]
  /external/v8/src/
log.cc 304 int32_t name_size; member in struct:v8::internal::LowLevelLogger::CodeCreateStruct
388 event.name_size = length;
    [all...]
  /system/bt/stack/btm/
btm_sec.cc 1678 uint16_t name_size; local
    [all...]
  /external/vulkan-validation-layers/loader/
loader.c 452 DWORD name_size = sizeof(name); local
468 while ((rtn_value = RegEnumValue(key, idx++, name, &name_size, NULL,
481 } else if (strlen(out) + name_size + 1 > total_size) {
493 snprintf(out, name_size + 1, "%s", name);
495 snprintf(out + strlen(out), name_size + 2, "%c%s",
498 name_size = 2048;
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.pb.cc 13073 int UninterpretedOption::name_size() const { function in class:google::protobuf::UninterpretedOption
    [all...]
descriptor.pb.h 6931 inline int UninterpretedOption::name_size() const { function in class:google::protobuf::UninterpretedOption
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor.pb.h 5436 inline int UninterpretedOption::name_size() const { function in class:google::protobuf::UninterpretedOption
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor.pb.h 5436 inline int UninterpretedOption::name_size() const { function in class:google::protobuf::UninterpretedOption
    [all...]

Completed in 1460 milliseconds

1 2