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

1 2

  /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/avahi/avahi-common/
domain.h 116 int avahi_service_name_split(const char *p, char *name, size_t name_size, char *type, size_t type_size, char *domain, size_t domain_size);
domain.c 496 int avahi_service_name_split(const char *p, char *name, size_t name_size, char *type, size_t type_size, char *domain, size_t domain_size) {
511 assert(name_size > 0);
527 strlcpy(name, buf, name_size);
  /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...]
  /system/bt/vendor_libs/test_vendor_lib/scripts/
test_channel.py 97 name_size = len(name)
99 self.lint_command(name, args, name_size, args_size)
100 encoded_name = chr(name_size) + name
105 def lint_command(self, name, args, name_size, args_size):
106 assert name_size == len(name) and args_size == len(args)
114 if name_size > 255 or args_size > 255:
  /external/compiler-rt/lib/asan/
asan_debugging.cc 42 Min(descr->name_size, vars[i].name_len));
116 const char *__asan_locate_address(uptr addr, char *name, uptr name_size,
118 AddressDescription descr = { name, name_size, 0, 0, nullptr };
asan_report.h 30 uptr name_size; member in struct:__asan::AddressDescription
  /external/compiler-rt/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/darwin-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/linux-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/linux-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/host/linux-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/sanitizer/
asan_interface.h 87 // point to an allocated buffer of size 'name_size'.
88 const char *__asan_locate_address(void *addr, char *name, size_t name_size,
  /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)) {
  /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);
  /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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pstats.py 391 def print_call_heading(self, name_size, column_title):
392 print >> self.stream, "Function ".ljust(name_size) + column_title
401 print >> self.stream, " "*name_size + " ncalls tottime cumtime"
403 def print_call_line(self, name_size, source, call_dict, arrow="->"):
404 print >> self.stream, func_std_string(source).ljust(name_size) + arrow,
422 left_width = name_size + 1
425 left_width = name_size + 3
  /prebuilts/gdb/linux-x86/lib/python2.7/
pstats.py 391 def print_call_heading(self, name_size, column_title):
392 print >> self.stream, "Function ".ljust(name_size) + column_title
401 print >> self.stream, " "*name_size + " ncalls tottime cumtime"
403 def print_call_line(self, name_size, source, call_dict, arrow="->"):
404 print >> self.stream, func_std_string(source).ljust(name_size) + arrow,
422 left_width = name_size + 1
425 left_width = name_size + 3
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 391 def print_call_heading(self, name_size, column_title):
392 print >> self.stream, "Function ".ljust(name_size) + column_title
401 print >> self.stream, " "*name_size + " ncalls tottime cumtime"
403 def print_call_line(self, name_size, source, call_dict, arrow="->"):
404 print >> self.stream, func_std_string(source).ljust(name_size) + arrow,
422 left_width = name_size + 1
425 left_width = name_size + 3
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 391 def print_call_heading(self, name_size, column_title):
392 print >> self.stream, "Function ".ljust(name_size) + column_title
401 print >> self.stream, " "*name_size + " ncalls tottime cumtime"
403 def print_call_line(self, name_size, source, call_dict, arrow="->"):
404 print >> self.stream, func_std_string(source).ljust(name_size) + arrow,
422 left_width = name_size + 1
425 left_width = name_size + 3
  /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...]
  /external/llvm/lib/Object/
Archive.cpp 215 uint64_t name_size; local
216 if (name.substr(3).rtrim(" ").getAsInteger(10, name_size))
218 return Data.substr(sizeof(ArchiveMemberHeader), name_size)

Completed in 716 milliseconds

1 2