Home
last modified time | relevance | path

Searched refs:section (Results 1 - 25 of 1088) sorted by relevance

12345678910>>...44

/third_party/elfutils/libebl/
H A Deblsectionname.c1 /* Return section name.
39 ebl_section_name (Ebl *ebl, int section, int xsection, char *buf, size_t len, in ebl_section_name() argument
42 const char *res = ebl != NULL ? ebl->section_name (section, xsection, in ebl_section_name()
47 if (section == SHN_UNDEF) in ebl_section_name()
49 else if (section == SHN_ABS) in ebl_section_name()
51 else if (section == SHN_COMMON) in ebl_section_name()
53 else if (section == SHN_BEFORE) in ebl_section_name()
55 else if (section == SHN_AFTER) in ebl_section_name()
57 else if ((section < SHN_LORESERVE || section in ebl_section_name()
[all...]
H A Deblsectiontypename.c1 /* Return section type name.
39 ebl_section_type_name (Ebl *ebl, int section, char *buf, size_t len) in ebl_section_type_name() argument
41 const char *res = ebl->section_type_name (section, buf, len); in ebl_section_type_name()
68 if ((size_t) section < sizeof (knowntypes) / sizeof (knowntypes[0]) in ebl_section_type_name()
69 && knowntypes[section] != NULL) in ebl_section_type_name()
70 res = knowntypes[section]; in ebl_section_type_name()
72 else if (section >= SHT_LOSUNW && section <= SHT_HISUNW) in ebl_section_type_name()
85 res = sunwtypes[section - SHT_LOSUNW]; in ebl_section_type_name()
89 switch (section) in ebl_section_type_name()
[all...]
/third_party/python/Lib/
H A Dconfigparser.py3 A configuration file consists of sections, lead by a "[section]" header,
28 objects for the list of sections, for the options within a section, and
41 When `strict` is True, the parser won't allow for any section or option
52 When `default_section` is given, the name of the special section is
54 be customized to point to any other valid section name. Its current
69 section proxies.
72 Return all the configuration section names, sans DEFAULT.
74 has_section(section)
75 Return whether the given section exists.
77 has_option(section, optio
[all...]
/third_party/node/test/fixtures/wpt/wasm/jsapi/
H A Dwasm-module-builder.js64 let kElementSectionCode = 9; // Elements section
68 let kTagSectionCode = 13; // Tag section (between Memory & Global)
70 // Name section types
564 // Emit section name.
566 // Emit the section to a temporary buffer: its full length isn't know yet.
567 const section = new Binary;
568 content_generator(section);
569 // Emit section length.
570 this.emit_u32v(section.length);
572 // Avoid spread because {section} ca
[all...]
/third_party/node/deps/openssl/openssl/crypto/ts/
H A Dts_conf.c123 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section) in TS_CONF_get_tsa_section() argument
125 if (!section) { in TS_CONF_get_tsa_section()
126 section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA); in TS_CONF_get_tsa_section()
127 if (!section) in TS_CONF_get_tsa_section()
130 return section; in TS_CONF_get_tsa_section()
133 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb, in TS_CONF_set_serial() argument
137 char *serial = NCONF_get_string(conf, section, ENV_SERIAL); in TS_CONF_set_serial()
139 ts_CONF_lookup_fail(section, ENV_SERIAL); in TS_CONF_set_serial()
151 int TS_CONF_set_crypto_device(CONF *conf, const char *section, in TS_CONF_set_crypto_device() argument
157 device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVIC in TS_CONF_set_crypto_device()
194 TS_CONF_set_signer_cert(CONF *conf, const char *section, const char *cert, TS_RESP_CTX *ctx) TS_CONF_set_signer_cert() argument
218 TS_CONF_set_certs(CONF *conf, const char *section, const char *certs, TS_RESP_CTX *ctx) TS_CONF_set_certs() argument
240 TS_CONF_set_signer_key(CONF *conf, const char *section, const char *key, const char *pass, TS_RESP_CTX *ctx) TS_CONF_set_signer_key() argument
263 TS_CONF_set_signer_digest(CONF *conf, const char *section, const char *md, TS_RESP_CTX *ctx) TS_CONF_set_signer_digest() argument
287 TS_CONF_set_def_policy(CONF *conf, const char *section, const char *policy, TS_RESP_CTX *ctx) TS_CONF_set_def_policy() argument
312 TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_policies() argument
344 TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_digests() argument
382 TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_accuracy() argument
419 TS_CONF_set_clock_precision_digits(const CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_clock_precision_digits() argument
442 ts_CONF_add_flag(CONF *conf, const char *section, const char *field, int flag, TS_RESP_CTX *ctx) ts_CONF_add_flag() argument
459 TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_ordering() argument
464 TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_tsa_name() argument
469 TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_ess_cert_id_chain() argument
476 TS_CONF_set_ess_cert_id_digest(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_ess_cert_id_digest() argument
[all...]
/third_party/openssl/crypto/ts/
H A Dts_conf.c123 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section) in TS_CONF_get_tsa_section() argument
125 if (!section) { in TS_CONF_get_tsa_section()
126 section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA); in TS_CONF_get_tsa_section()
127 if (!section) in TS_CONF_get_tsa_section()
130 return section; in TS_CONF_get_tsa_section()
133 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb, in TS_CONF_set_serial() argument
137 char *serial = NCONF_get_string(conf, section, ENV_SERIAL); in TS_CONF_set_serial()
139 ts_CONF_lookup_fail(section, ENV_SERIAL); in TS_CONF_set_serial()
151 int TS_CONF_set_crypto_device(CONF *conf, const char *section, in TS_CONF_set_crypto_device() argument
157 device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVIC in TS_CONF_set_crypto_device()
194 TS_CONF_set_signer_cert(CONF *conf, const char *section, const char *cert, TS_RESP_CTX *ctx) TS_CONF_set_signer_cert() argument
218 TS_CONF_set_certs(CONF *conf, const char *section, const char *certs, TS_RESP_CTX *ctx) TS_CONF_set_certs() argument
240 TS_CONF_set_signer_key(CONF *conf, const char *section, const char *key, const char *pass, TS_RESP_CTX *ctx) TS_CONF_set_signer_key() argument
263 TS_CONF_set_signer_digest(CONF *conf, const char *section, const char *md, TS_RESP_CTX *ctx) TS_CONF_set_signer_digest() argument
287 TS_CONF_set_def_policy(CONF *conf, const char *section, const char *policy, TS_RESP_CTX *ctx) TS_CONF_set_def_policy() argument
312 TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_policies() argument
344 TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_digests() argument
382 TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_accuracy() argument
419 TS_CONF_set_clock_precision_digits(const CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_clock_precision_digits() argument
442 ts_CONF_add_flag(CONF *conf, const char *section, const char *field, int flag, TS_RESP_CTX *ctx) ts_CONF_add_flag() argument
459 TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_ordering() argument
464 TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_tsa_name() argument
469 TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_ess_cert_id_chain() argument
476 TS_CONF_set_ess_cert_id_digest(CONF *conf, const char *section, TS_RESP_CTX *ctx) TS_CONF_set_ess_cert_id_digest() argument
[all...]
/third_party/python/Lib/idlelib/
H A Dconfig.py11 database keys are tuples (config-type, section, item). As implemented,
14 value for each key is a ConfigParser instance that maps section and item
50 def Get(self, section, option, type=None, default=None, raw=False):
52 Get an option value for given section/option or return default.
56 # Should also print Warning(file, section, option).
58 if not self.has_option(section, option):
61 return self.getboolean(section, option)
63 return self.getint(section, option)
65 return self.get(section, option, raw=raw)
67 def GetOptionList(self, section)
[all...]
/third_party/node/deps/openssl/openssl/crypto/conf/
H A Dconf_api.c23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) in _CONF_get_section() argument
27 if (conf == NULL || section == NULL) in _CONF_get_section()
30 vv.section = (char *)section; in _CONF_get_section()
35 const char *section) in STACK_OF()
39 v = _CONF_get_section(conf, section); in STACK_OF()
45 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument
50 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string()
52 value->section = section in _CONF_add_string()
66 _CONF_get_string(const CONF *conf, const char *section, const char *name) _CONF_get_string() argument
185 _CONF_new_section(CONF *conf, const char *section) _CONF_new_section() argument
[all...]
/third_party/openssl/crypto/conf/
H A Dconf_api.c23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) in _CONF_get_section() argument
27 if (conf == NULL || section == NULL) in _CONF_get_section()
30 vv.section = (char *)section; in _CONF_get_section()
35 const char *section) in STACK_OF()
39 v = _CONF_get_section(conf, section); in STACK_OF()
45 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument
50 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string()
52 value->section = section in _CONF_add_string()
66 _CONF_get_string(const CONF *conf, const char *section, const char *name) _CONF_get_string() argument
185 _CONF_new_section(CONF *conf, const char *section) _CONF_new_section() argument
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vkscript/
H A Dparser.cc58 for (const auto& section : section_parser.Sections()) { in Parse()
59 r = ProcessSection(section); in Parse()
78 for (const auto& section : section_parser.Sections()) { in GenerateDefaultPipeline()
79 if (!SectionParser::HasShader(section.section_type)) in GenerateDefaultPipeline()
82 if (section.shader_type != kShaderTypeCompute) { in GenerateDefaultPipeline()
111 Result Parser::ProcessSection(const SectionParser::Section& section) { in ProcessSection() argument
113 if (section.section_type == NodeType::kComment) in ProcessSection()
116 if (SectionParser::HasShader(section.section_type)) in ProcessSection()
117 return ProcessShaderBlock(section); in ProcessSection()
118 if (section in ProcessSection()
130 ProcessShaderBlock(const SectionParser::Section& section) ProcessShaderBlock() argument
151 ProcessRequireBlock(const SectionParser::Section& section) ProcessRequireBlock() argument
275 ProcessIndicesBlock(const SectionParser::Section& section) ProcessIndicesBlock() argument
320 ProcessVertexDataBlock(const SectionParser::Section& section) ProcessVertexDataBlock() argument
455 ProcessTestBlock(const SectionParser::Section& section) ProcessTestBlock() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dass_split.c49 const char *section; member
59 { .section = "Script Info",
69 { .section = "V4+ Styles",
101 { .section = "V4 Styles",
128 { .section = "Events",
215 const ASSSection *section = &ass_sections[ctx->current_section]; in realloc_section_array() local
216 int *count = (int *)((uint8_t *)&ctx->ass + section->offset_count); in realloc_section_array()
217 void **section_ptr = (void **)((uint8_t *)&ctx->ass + section->offset); in realloc_section_array()
218 uint8_t *tmp = av_realloc_array(*section_ptr, (*count+1), section->size); in realloc_section_array()
222 tmp += *count * section in realloc_section_array()
240 get_default_field_orders(const ASSSection *section, int *number) get_default_field_orders() argument
257 const ASSSection *section = &ass_sections[ctx->current_section]; ass_split_section() local
359 char c, section[16]; ass_split() local
397 free_section(ASSSplitContext *ctx, const ASSSection *section) free_section() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dv3_conf.c27 static char *conf_lhash_get_string(void *db, const char *section, const char *value);
28 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section);
35 const char *section, in X509V3_EXT_nconf_int()
47 if (section != NULL) in X509V3_EXT_nconf_int()
49 "section=%s, name=%s, value=%s", in X509V3_EXT_nconf_int()
50 section, name, value); in X509V3_EXT_nconf_int()
103 "name=%s,section=%s", OBJ_nid2sn(ext_nid), value); in do_ext_nconf()
306 * file section to an extension STACK. Just check in case sk == NULL.
309 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section, in X509V3_EXT_add_nconf_sk() argument
317 if ((nval = NCONF_get_section(conf, section)) in X509V3_EXT_add_nconf_sk()
34 X509V3_EXT_nconf_int(CONF *conf, X509V3_CTX *ctx, const char *section, const char *name, const char *value) X509V3_EXT_nconf_int() argument
341 X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, X509 *cert) X509V3_EXT_add_nconf() argument
354 X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, X509_CRL *crl) X509V3_EXT_CRL_add_nconf() argument
367 X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, X509_REQ *req) X509V3_EXT_REQ_add_nconf() argument
381 X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section) X509V3_get_string() argument
411 X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) X509V3_section_free() argument
419 nconf_get_string(void *db, const char *section, const char *value) nconf_get_string() argument
510 conf_lhash_get_string(void *db, const char *section, const char *value) conf_lhash_get_string() argument
[all...]
/third_party/openssl/crypto/x509/
H A Dv3_conf.c27 static char *conf_lhash_get_string(void *db, const char *section, const char *value);
28 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, const char *section);
35 const char *section, in X509V3_EXT_nconf_int()
47 if (section != NULL) in X509V3_EXT_nconf_int()
49 "section=%s, name=%s, value=%s", in X509V3_EXT_nconf_int()
50 section, name, value); in X509V3_EXT_nconf_int()
103 "name=%s,section=%s", OBJ_nid2sn(ext_nid), value); in do_ext_nconf()
306 * file section to an extension STACK. Just check in case sk == NULL.
309 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section, in X509V3_EXT_add_nconf_sk() argument
317 if ((nval = NCONF_get_section(conf, section)) in X509V3_EXT_add_nconf_sk()
34 X509V3_EXT_nconf_int(CONF *conf, X509V3_CTX *ctx, const char *section, const char *name, const char *value) X509V3_EXT_nconf_int() argument
341 X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, X509 *cert) X509V3_EXT_add_nconf() argument
354 X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, X509_CRL *crl) X509V3_EXT_CRL_add_nconf() argument
367 X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section, X509_REQ *req) X509V3_EXT_REQ_add_nconf() argument
381 X509V3_get_string(X509V3_CTX *ctx, const char *name, const char *section) X509V3_get_string() argument
411 X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) X509V3_section_free() argument
419 nconf_get_string(void *db, const char *section, const char *value) nconf_get_string() argument
510 conf_lhash_get_string(void *db, const char *section, const char *value) conf_lhash_get_string() argument
[all...]
/third_party/libwebsockets/lib/plat/freertos/esp32/
H A Desp_attr.h24 #define IRAM_ATTR __attribute__((section(".iram1")))
27 #define DRAM_ATTR __attribute__((section(".dram1")))
40 #define RTC_IRAM_ATTR __attribute__((section(".rtc.text")))
45 #define RTC_DATA_ATTR __attribute__((section(".rtc.data")))
48 #define RTC_RODATA_ATTR __attribute__((section(".rtc.rodata")))
50 // Forces data into noinit section to avoid initialization after restart.
51 #define __NOINIT_ATTR __attribute__((section(".noinit")))
53 // Forces data into RTC slow memory of .noinit section.
56 #define RTC_NOINIT_ATTR __attribute__((section(".rtc_noinit")))
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DDecimalQuantity_AbstractBCD.java783 // Compute which section of the number we are in. in roundToMagnitude()
788 int section; in roundToMagnitude()
794 section = RoundingUtils.SECTION_LOWER; in roundToMagnitude()
797 section = RoundingUtils.SECTION_UPPER; in roundToMagnitude()
800 section = RoundingUtils.SECTION_LOWER; in roundToMagnitude()
803 section = RoundingUtils.SECTION_UPPER; in roundToMagnitude()
807 section = RoundingUtils.SECTION_LOWER; in roundToMagnitude()
810 section = RoundingUtils.SECTION_UPPER; in roundToMagnitude()
813 section = RoundingUtils.SECTION_MIDPOINT; in roundToMagnitude()
816 section in roundToMagnitude()
[all...]
/third_party/python/Tools/c-analyzer/
H A Dtable-file.py45 section = []
48 if not section:
53 yield tuple(section), value
57 section[kind:] = [value]
62 for section, row in iter_sections(lines):
63 if section not in sections:
64 sections[section] = [row]
66 sections[section].append(row)
72 for section, rows in collect_sections(lines).items():
75 for name in section
[all...]
/third_party/libabigail/src/
H A Dabg-elf-helpers.cc301 /// Find and return a section by its name.
305 /// @param name the section name.
307 /// @return the section found, nor nil if none was found.
315 Elf_Scn* section = 0; in find_section_by_name()
317 while ((section = elf_nextscn(elf_handle, section)) != 0) in find_section_by_name()
319 header = gelf_getshdr(section, &header_mem); in find_section_by_name()
326 return section; in find_section_by_name()
332 /// Find and return a section by its name and its type.
336 /// @param name the name of the section
379 Elf_Scn* section = nullptr; find_section() local
459 Elf_Scn* section = find_symbol_table_section(elf_handle); find_symbol_table_section_index() local
590 Elf_Scn* section = NULL; get_symbol_versionning_sections() local
669 Elf_Scn* section = 0; find_relocation_section() local
1353 address_is_in_section(Dwarf_Addr addr, Elf_Scn* section) address_is_in_section() argument
[all...]
/third_party/musl/src/network/
H A Dns_parse.c80 int ns_skiprr(const unsigned char *ptr, const unsigned char *eom, ns_sect section, int count) in ns_skiprr() argument
90 if (section != ns_s_qd) { in ns_skiprr()
104 int ns_parserr(ns_msg *handle, ns_sect section, int rrnum, ns_rr *rr) in ns_parserr() argument
108 if (section < 0 || section >= ns_s_max) goto bad; in ns_parserr()
109 if (section != handle->_sect) { in ns_parserr()
110 handle->_sect = section; in ns_parserr()
112 handle->_msg_ptr = handle->_sections[section]; in ns_parserr()
115 if (rrnum < 0 || rrnum >= handle->_counts[section]) goto bad; in ns_parserr()
118 handle->_msg_ptr = handle->_sections[section]; in ns_parserr()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dschema_generator.py125 self.sections = {section: [] for section in self.ALL_SECTIONS}
147 self.sections = {section: [] for section in self.ALL_SECTIONS}
155 for section in self.TYPE_SECTIONS:
156 contents = self.sections[section]
163 def appendSection(self, section, text):
164 self.sections[section].append(text)
174 section = 'struct'
176 section
[all...]
/third_party/python/Tools/i18n/
H A Dmsgfmt.py119 section = msgctxt = None
132 if l[0] == '#' and section == STR:
134 section = msgctxt = None
142 # Now we are in a msgid or msgctxt section, output previous section
144 if section == STR:
146 section = CTXT
150 if section == STR:
158 section = ID
164 if section !
[all...]
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dconf_api.h27 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
29 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
32 const char *section);
34 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
35 char *_CONF_get_string(const CONF *conf, const char *section,
37 long _CONF_get_number(const CONF *conf, const char *section,
/third_party/openssl/include/openssl/
H A Dconf_api.h27 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
29 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
32 const char *section);
34 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
35 char *_CONF_get_string(const CONF *conf, const char *section,
37 long _CONF_get_number(const CONF *conf, const char *section,
/third_party/openssl/ohos_lite/include/openssl/
H A Dconf_api.h21 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
26 const char *section);
28 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
29 char *_CONF_get_string(const CONF *conf, const char *section,
31 long _CONF_get_number(const CONF *conf, const char *section,
/third_party/curl/tests/
H A Dgetpart.pm91 # return the attributes of the section
93 my ($section, $part)=@_;
98 # print "Section: $section, part: $part\n";
102 if(!$inside && ($_ =~ /^ *\<$section/)) {
118 # detect end of section when part wasn't found
119 elsif((1 ==$inside) && ($_ =~ /^ *\<\/$section\>/)) {
131 my ($section, $part)=@_;
141 if(!$inside && ($_ =~ /^ *\<$section/)) {
164 elsif(($inside >= 1) && ($_ =~ /^ *\<\/$section/)) {
166 print STDERR "$xmlfile:$line:1: error: missing </$part> tag before </$section>\
[all...]
/third_party/elfio/elfio/
H A Delfio_versym.hpp33 explicit versym_section_accessor_template( S* section ) in versym_section_accessor_template()
34 : versym_section( section ) in versym_section_accessor_template()
36 if ( section != nullptr ) { in versym_section_accessor_template()
37 entries_num = decltype( entries_num )( section->get_size() / in versym_section_accessor_template()
92 using versym_section_accessor = versym_section_accessor_template<section>;
94 versym_section_accessor_template<const section>;
106 // Find .dynamic section in versym_r_section_accessor_template()
107 const section* dynamic_section = elf_file.sections[".dynamic"]; in versym_r_section_accessor_template()
173 using versym_r_section_accessor = versym_r_section_accessor_template<section>;
175 versym_r_section_accessor_template<const section>;
[all...]

Completed in 12 milliseconds

12345678910>>...44