/third_party/mesa3d/bin/ |
H A D | symbols-check.py | 42 symbol_name = fields[0] 44 if symbol_name in PLATFORM_SYMBOLS: 47 assert symbol_name[0] == '_' 48 symbol_name = symbol_name[1:] 49 symbols.append(symbol_name) 74 symbol_name = fields[3] 76 if symbol_name[0] == '_' and '@' in symbol_name: 77 symbol_name [all...] |
/third_party/glslang/ |
H A D | gen_extension_headers.py | 45 symbol_name = filename.split(".")[0]
46 symbol_name_list.append(symbol_name)
47 header_name = symbol_name + ".h"
48 header_str = 'std::string %s_GLSL = R"(\n%s\n)";\n' % (symbol_name, glsl_contents)
59 for symbol_name in symbol_name_list:
60 contents += '\t\tif (strstr(shaders[i], "%s") != nullptr) {\n' % (symbol_name) 61 contents += '\t\t shaderString.append(%s_GLSL);\n' % (symbol_name)
|
/third_party/libdrm/ |
H A D | symbols-check.py | 34 symbol_name = fields[0] 36 if symbol_name in PLATFORM_SYMBOLS: 39 assert symbol_name[0] == '_' 40 symbol_name = symbol_name[1:] 41 symbols.append(symbol_name)
|
/third_party/libabigail/tools/ |
H A D | abisym.cc | 40 char* symbol_name; member 48 symbol_name(0), in options() 80 else if (!opts.symbol_name) in parse_command_line() 81 opts.symbol_name = argv[i] ; in parse_command_line() 130 && opts.symbol_name != 0); in main() 132 string p = opts.elf_path, n = opts.symbol_name; in main() 138 << opts.symbol_name in main()
|
/third_party/musl/src/internal/ |
H A D | locale_impl.c | 31 static void *get_icu_handle(icu_so_type type, const char *symbol_name) in get_icu_handle() argument 51 return dlsym(cur_handle, symbol_name); in get_icu_handle() 66 void get_icu_symbol(icu_so_type type, void **icu_symbol_handle, const char *symbol_name) in get_icu_symbol() argument 70 char *valid_icu_symbol = malloc(strlen(symbol_name) + strlen(icu_version) + 2); in get_icu_symbol() 71 sprintf(valid_icu_symbol, "%s_%s", symbol_name, icu_version); in get_icu_symbol()
|
/third_party/mesa3d/src/intel/ds/ |
H A D | intel_pps_driver.cc | 87 if (!strcmp(query->symbol_name, "RenderBasic")) in init_perfcnt() 89 if (metric_set_name && !strcmp(query->symbol_name, metric_set_name)) in init_perfcnt() 99 PPS_LOG_ERROR(" %s", query->symbol_name); in init_perfcnt() 106 selected_query->symbol_name, selected_query->name); in init_perfcnt() 111 group.name = selected_query->symbol_name; in init_perfcnt() 119 counter_desc.name = counter.symbol_name; in init_perfcnt()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor_database.h | 84 virtual bool FindFileContainingSymbol(const std::string& symbol_name, 179 bool FindFileContainingSymbol(const std::string& symbol_name, 304 bool FindNameOfFileContainingSymbol(const std::string& symbol_name, 310 bool FindFileContainingSymbol(const std::string& symbol_name, 343 bool FindFileContainingSymbol(const std::string& symbol_name, 373 bool FindFileContainingSymbol(const std::string& symbol_name,
|
H A D | descriptor_database.cc | 361 const std::string& symbol_name, FileDescriptorProto* output) { in FindFileContainingSymbol() 362 return MaybeCopy(index_.FindSymbol(symbol_name), output); in FindFileContainingSymbol() 582 const std::string& symbol_name, FileDescriptorProto* output) { in FindFileContainingSymbol() 583 return MaybeParse(index_->FindSymbol(symbol_name), output); in FindFileContainingSymbol() 587 const std::string& symbol_name, std::string* output) { in FindNameOfFileContainingSymbol() 588 auto encoded_file = index_->FindSymbol(symbol_name); in FindNameOfFileContainingSymbol() 667 static bool CheckForMutualSubsymbols(StringPiece symbol_name, Iter* iter, in CheckForMutualSubsymbols() argument 670 if (IsSubSymbol((*iter)->AsString(index), symbol_name)) { in CheckForMutualSubsymbols() 671 GOOGLE_LOG(ERROR) << "Symbol name \"" << symbol_name in CheckForMutualSubsymbols() 684 if (*iter != end && IsSubSymbol(symbol_name, (*ite in CheckForMutualSubsymbols() 360 FindFileContainingSymbol( const std::string& symbol_name, FileDescriptorProto* output) FindFileContainingSymbol() argument 581 FindFileContainingSymbol( const std::string& symbol_name, FileDescriptorProto* output) FindFileContainingSymbol() argument 586 FindNameOfFileContainingSymbol( const std::string& symbol_name, std::string* output) FindNameOfFileContainingSymbol() argument 905 FindFileContainingSymbol( const std::string& symbol_name, FileDescriptorProto* output) FindFileContainingSymbol() argument 966 FindFileContainingSymbol( const std::string& symbol_name, FileDescriptorProto* output) FindFileContainingSymbol() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_stable_abi_ctypes.py | 18 for symbol_name in SYMBOL_NAMES: 19 with self.subTest(symbol_name): 20 ctypes_test.pythonapi[symbol_name]
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | descriptor_database.cc | 120 const std::string& symbol_name, FileDescriptorProto* output) { in FindFileContainingSymbol() 123 symbol_name.c_str(), symbol_name.size())); in FindFileContainingSymbol() 119 FindFileContainingSymbol( const std::string& symbol_name, FileDescriptorProto* output) FindFileContainingSymbol() argument
|
H A D | descriptor_database.h | 54 bool FindFileContainingSymbol(const std::string& symbol_name,
|
/third_party/musl/porting/linux/user/src/ctype/ |
H A D | towctrans.c | 69 static void* find_hmicu_symbol(const char* symbol_name) in find_hmicu_symbol() argument 74 return g_hmicu_handle ? dlsym(g_hmicu_handle, symbol_name) : NULL; in find_hmicu_symbol()
|
/third_party/musl/src/ctype/ |
H A D | towctrans.c | 72 static void* find_hmicu_symbol(const char* symbol_name) { in find_hmicu_symbol() argument 76 return g_hmicu_handle ? dlsym(g_hmicu_handle, symbol_name) : NULL; in find_hmicu_symbol()
|
/third_party/mbedtls/tests/scripts/ |
H A D | check_names.py | 133 * symbol_name: the name of the symbol. 135 def __init__(self, symbol_name): 136 self.symbol_name = symbol_name 140 return "{0}".format(self.symbol_name) 146 .format(self.symbol_name))
|
/third_party/libabigail/src/ |
H A D | abg-suppression-priv.h | 274 const string& symbol_name, in priv() 284 symbol_name_(symbol_name), in priv() 438 const string& symbol_name, in priv() 447 symbol_name_(symbol_name), in priv()
|
H A D | abg-suppression.cc | 2535 string symbol_name; in suppresses_function() local 2538 symbol_name = sym->get_name(); in suppresses_function() 2544 if (a->get_name() != symbol_name) in suppresses_function() 2569 string symbol_name; in suppresses_function() local 2572 symbol_name = sym->get_name(); in suppresses_function() 2600 string symbol_name; in suppresses_function() local 2603 symbol_name = sym->get_name(); in suppresses_function() 2637 // Check if the "symbol_name", "symbol_name_regexp", and in suppresses_function() 3132 "symbol_name", in read_function_suppression() 3219 is_simple_property(section.find_property("symbol_name")); in read_function_suppression() 3373 variable_suppression(const string& label, const string& name, const string& name_regex_str, const string& symbol_name, const string& symbol_name_regex_str, const string& symbol_version, const string& symbol_version_regex, const string& type_name, const string& type_name_regex_str) variable_suppression() argument 4087 string symbol_name = (sym_name_prop read_variable_suppression() local [all...] |
/third_party/ltp/testcases/kdump/lib/kprobes/ |
H A D | kprobes.c | 33 my_jprobe.kp.symbol_name = "do_fork"; in jprobe_init()
|
/third_party/mesa3d/src/intel/perf/ |
H A D | intel_perf.h | 193 const char *symbol_name; member 238 const char *symbol_name; member
|
/third_party/libabigail/include/ |
H A D | abg-corpus.h | 195 lookup_function_symbol(const string& symbol_name, 205 lookup_variable_symbol(const string& symbol_name,
|
H A D | abg-dwarf-reader.h | 56 const string& symbol_name,
|
/third_party/mesa3d/src/panfrost/perf/ |
H A D | pan_perf.h | 61 const char *symbol_name; member
|
H A D | quick.c | 40 printf("%s (%s): %u\n", ctr->name, ctr->symbol_name, val); in main()
|
/third_party/elfutils/src/ |
H A D | addr2line.c | 495 const char *symbol_name = dwfl_module_getsym_info (mod, i, symbol, in find_symbol() local 498 if (symbol_name == NULL || symbol_name[0] == '\0') in find_symbol() 507 if (!strcmp (symbol_name, looking_for)) in find_symbol()
|
/third_party/elfutils/tests/ |
H A D | backtrace.c | 451 const char *symbol_name = dwfl_module_getsym (data.mod, symi, &symbol, NULL); in exec_dump() local 452 if (symbol_name == NULL) in exec_dump() 461 if (strcmp (symbol_name, "jmp") != 0) in exec_dump()
|
/third_party/elfio/elfio/ |
H A D | elfio_symbols.hpp | 121 std::string symbol_name; in get_symbol() local 122 if ( get_symbol( i, symbol_name, value, size, bind, type, in get_symbol() 124 if ( symbol_name == name ) { in get_symbol()
|