Searched defs:section (Results 101 - 125 of 186) sorted by relevance

12345678

/external/chromium_org/courgette/
H A Ddisassembler_win32_x64.cc171 const Section* section = &sections_[i]; local
173 // TODO(sra): consider using the 'characteristics' field of the section
174 // header to see if the section contains instructions.
175 if (memcmp(section->name, ".text", 6) == 0)
179 section->file_offset_of_raw_data + section->size_of_raw_data;
286 const Section* section = &sections_[i]; local
287 uint32 offset = rva - section->virtual_address;
288 if (offset < section->virtual_size) {
289 return section;
296 const Section* section = RVAToSection(rva); local
325 SectionName(const Section* section) argument
338 const Section* section = FindNextSection(file_offset); local
388 const Section* section = FindNextSection(file_offset); local
423 ParseRel32RelocsFromSection(const Section* section) argument
531 ParseFileRegion( const Section* section, uint32 start_file_offset, uint32 end_file_offset, AssemblyProgram* program) argument
665 const Section* section = RVAToSection(rva); local
680 const Section* section = &sections_[i]; local
695 const Section* section = &sections_[i]; local
[all...]
H A Ddisassembler_win32_x86.cc171 const Section* section = &sections_[i]; local
173 // TODO(sra): consider using the 'characteristics' field of the section
174 // header to see if the section contains instructions.
175 if (memcmp(section->name, ".text", 6) == 0)
179 section->file_offset_of_raw_data + section->size_of_raw_data;
286 const Section* section = &sections_[i]; local
287 uint32 offset = rva - section->virtual_address;
288 if (offset < section->virtual_size) {
289 return section;
296 const Section* section = RVAToSection(rva); local
325 SectionName(const Section* section) argument
338 const Section* section = FindNextSection(file_offset); local
388 const Section* section = FindNextSection(file_offset); local
423 ParseRel32RelocsFromSection(const Section* section) argument
531 ParseFileRegion( const Section* section, uint32 start_file_offset, uint32 end_file_offset, AssemblyProgram* program) argument
665 const Section* section = RVAToSection(rva); local
680 const Section* section = &sections_[i]; local
695 const Section* section = &sections_[i]; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/conf/
H A Dconf.c71 return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name);
77 if (a->section != b->section) {
78 i = strcmp(a->section, b->section);
111 if (value->section) {
112 OPENSSL_free(value->section);
141 CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) { argument
151 i = strlen(section) + 1;
152 v->section
183 str_copy(CONF *conf, char *section, char **pto, char *from) argument
341 get_section(const CONF *conf, const char *section) argument
357 NCONF_get_string(const CONF *conf, const char *section, const char *name) argument
371 add_string(const CONF *conf, CONF_VALUE *section, CONF_VALUE *value) argument
500 char *section = NULL, *buf; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dobj_int_extract.c121 struct section s;
127 /* Although each section is given it's own offset, nlist.n_value
128 * references the offset of the first section. This isn't
130 * data section is the same as the first section. However, with
131 * debug sections mixed in, the offset of the debug section
132 * increases but n_value still references the first section.
139 memcpy(&s, seg_buf, sizeof(struct section));
345 log_msg("Failed to parse ELF string table: section %d, index %d\n",
355 log_msg("Failed to parse ELF string table: section
714 int16_t section = get_le16(ptr + 12); // section number local
[all...]
/external/libvpx/libvpx/build/make/
H A Dobj_int_extract.c121 struct section s;
127 /* Although each section is given it's own offset, nlist.n_value
128 * references the offset of the first section. This isn't
130 * data section is the same as the first section. However, with
131 * debug sections mixed in, the offset of the debug section
132 * increases but n_value still references the first section.
139 memcpy(&s, seg_buf, sizeof(struct section));
345 log_msg("Failed to parse ELF string table: section %d, index %d\n",
355 log_msg("Failed to parse ELF string table: section
714 int16_t section = get_le16(ptr + 12); // section number local
[all...]
/external/lldb/source/Core/
H A DSection.cpp92 // This section has a parent which means m_file_addr is an offset into
93 // the parent section, so the file address for this section is the file
97 // This section has no parent, so m_file_addr is the file base address
104 // This section has a parent which means m_file_addr is an offset.
109 // This section has no parent, so there is no offset to be had
248 // The top most section prints the module basename
264 Section::IsDescendant (const Section *section) argument
266 if (this == section)
270 return parent_sp->IsDescendant (section);
[all...]
/external/openssl/apps/
H A Dsrp.c112 static char *section=NULL; variable
312 section = NULL;
332 section= *(++argv);
481 /* Lets get the config section we are using */
482 if (section == NULL)
486 section=NCONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_SRP);
487 if (section == NULL)
498 VERBOSE BIO_printf(bio_err,"trying to read " ENV_DATABASE " in section \"%s\"\n",section);
500 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABAS
[all...]
/external/openssl/crypto/conf/
H A Dconf.h76 char *section; member in struct:__anon28197
131 const char *section); variable
167 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,const char *section);
H A Dconf_def.c75 static int str_copy(CONF *conf,char *section,char **to, char *from);
221 char *section=NULL,*buf; local
231 section=(char *)OPENSSL_malloc(10);
232 if (section == NULL)
237 BUF_strlcpy(section,"default",10);
245 sv=_CONF_new_section(conf,section);
334 if (!str_copy(conf,NULL,&section,start)) goto err;
335 if ((sv=_CONF_get_section(conf,section)) == NULL)
336 sv=_CONF_new_section(conf,section);
382 if (psection == NULL) psection=section;
503 str_copy(CONF *conf, char *section, char **pto, char *from) argument
[all...]
/external/openssl/include/openssl/
H A Dconf.h76 char *section; member in struct:__anon28380
131 const char *section); variable
167 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,const char *section);
/external/oprofile/libutil++/
H A Dbfd_support.cpp83 cverb << vbfd << "fetching .gnu_debuglink section" << endl;
92 << ".gnu_debuglink section has size " << debuglink_size << endl;
226 void fixup_linenr(bfd * abfd, asection * section, asymbol ** syms, argument
242 size_t section_size = bfd_section_size(abfd, section);
247 bool ret = bfd_find_nearest_line(abfd, section, syms, pc + i,
336 if (!sym->section) {
343 if (!(sym->section->flags & SEC_CODE))
370 if (!(sym->section->flags & SEC_LOAD))
445 * function filters out symbols whose section's flag value does not include
448 * section fla
618 asection * section; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DCache.java552 getCred(int section, boolean isAuth) { argument
553 if (section == Section.ANSWER) {
558 } else if (section == Section.AUTHORITY) {
563 } else if (section == Section.ADDITIONAL) {
566 throw new IllegalArgumentException("getCred: invalid section");
H A DRecord.java163 * designed to create records that will be added to the QUERY section
176 fromWire(DNSInput in, int section, boolean isUpdate) throws IOException { argument
187 if (section == Section.QUESTION)
193 (section == Section.PREREQ || section == Section.UPDATE))
200 fromWire(DNSInput in, int section) throws IOException { argument
201 return fromWire(in, section, false);
208 fromWire(byte [] b, int section) throws IOException { argument
209 return fromWire(new DNSInput(b), section, false);
213 toWire(DNSOutput out, int section, Compressio argument
231 toWire(int section) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DStylesSidebarPane.js177 var section = this.sections[0][i];
178 if (section instanceof WebInspector.ComputedStylePropertiesSection)
179 section.onShowInheritedChanged();
254 * @param {!WebInspector.StylePropertiesSection} section
256 _startEditingSelector: function(section)
258 this._editingSelectorSection = section;
278 var section = styleRuleSections[i];
279 if (section.computedStyle)
281 section._styleSheetRuleEdited(editedRule, oldRange, newRange);
659 var section
811 var section = styleRule.section; variable
[all...]
/external/chromium_org/sandbox/win/src/
H A Dinterceptors_64.cc25 HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits,
31 return TargetNtMapViewOfSection(orig_fn, section, process, base, zero_bits,
24 TargetNtMapViewOfSection64( HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits, SIZE_T commit_size, PLARGE_INTEGER offset, PSIZE_T view_size, SECTION_INHERIT inherit, ULONG allocation_type, ULONG protect) argument
H A Dsandbox_nt_util.cc123 // Map the entire shared section from the start.
302 bool IsValidImageSection(HANDLE section, PVOID *base, PLARGE_INTEGER offset, argument
304 if (!section || !base || !view_size || offset)
309 NTSTATUS ret = g_nt.DuplicateObject(NtCurrentProcess, section,
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMarkupAccumulator.cpp482 void MarkupAccumulator::appendCDATASection(StringBuilder& result, const String& section) argument
486 result.append(section);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp58 RenderTableSection* section = toRenderTableSection(child); local
59 unsigned numRows = section->numRows();
61 RenderTableSection::CellStruct current = section->cellAt(i, effCol);
121 } else if (!effCol || section->primaryCellAt(i, effCol - 1) != cell) {
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dasn1_gen.c123 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
451 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf) argument
462 if (section)
466 sect = X509V3_get_section(cnf, (char *)section);
670 vtmp.section = NULL;
/external/chromium_org/third_party/icu/source/tools/makeconv/
H A Dgencnvex.c395 * One function invocation generates one section table.
400 * 2. Allocate the section table with possible optimization for linear access.
401 * 3. Write temporary version of the section table with start indexes of
404 * 0: write 0 as a result value (unused byte in linear-access section table)
422 uint32_t *section; local
445 /* step 2: allocate the section; set count, section */
461 fprintf(stderr, "error: toUnicode extension table section overflow: %ld section entries\n", (long)count);
465 /* allocate the section
[all...]
/external/deqp/executor/
H A DxeTestResultParser.cpp492 ri::Section* section = curList->allocItem<ri::Section>(); local
493 section->name = getAttribute("Name");
494 section->description = getAttribute("Description");
495 item = section;
/external/deqp/framework/common/
H A DtcuTestLog.hpp113 TestLog& operator<< (const Section& section);
402 // Section helper that closes section when leaving scope.
426 inline TestLog& TestLog::operator<< (const Section& section) { section.write(*this); return *this; } argument
/external/icu/icu4c/source/tools/makeconv/
H A Dgencnvex.c395 * One function invocation generates one section table.
400 * 2. Allocate the section table with possible optimization for linear access.
401 * 3. Write temporary version of the section table with start indexes of
404 * 0: write 0 as a result value (unused byte in linear-access section table)
422 uint32_t *section; local
445 /* step 2: allocate the section; set count, section */
461 fprintf(stderr, "error: toUnicode extension table section overflow: %ld section entries\n", (long)count);
465 /* allocate the section
[all...]
/external/openssl/crypto/asn1/
H A Dasn1_gen.c120 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
448 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf) argument
459 if (section)
463 sect = X509V3_get_section(cnf, (char *)section);
667 vtmp.section = NULL;
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config.c99 static cfg_node* find_node(const char* section, const char* key, const char* name);
100 static int remove_node(const char* section, const char* key, const char* name);
101 static int remove_filter_node(const char* section, const char* filter[], int filter_count, int max_allowed);
103 static int set_node(const char* section, const char* key, const char* name,
154 int btif_config_get_int(const char* section, const char* key, const char* name, int* value) argument
158 return btif_config_get(section, key, name, (char*)value, &size, &type);
160 int btif_config_set_int(const char* section, const char* key, const char* name, int value) argument
162 return btif_config_set(section, key, name, (char*)&value, sizeof(value), BTIF_CFG_TYPE_INT);
164 int btif_config_get_str(const char* section, const char* key, const char* name, char* value, int* size) argument
169 return btif_config_get(section, ke
171 btif_config_set_str(const char* section, const char* key, const char* name, const char* value) argument
176 btif_config_exist(const char* section, const char* key, const char* name) argument
187 btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type) argument
222 btif_config_set(const char* section, const char* key, const char* name, const char* value, int bytes, int type) argument
237 btif_config_remove(const char* section, const char* key, const char* name) argument
253 btif_config_filter_remove(const char* section, const char* filter[], int filter_count, int max_allowed) argument
275 btif_config_next_key(short pos, const char* section, char * name, int* bytes) argument
288 btif_config_next_value(short pos, const char* section, const char* key, char* name, int* bytes) argument
494 set_node(const char* section, const char* key, const char* name, const char* value, short bytes, short type) argument
531 find_node(const char* section, const char* key, const char* name) argument
608 remove_node(const char* section, const char* key, const char* name) argument
695 remove_filter_node(const char* section, const char* filter[], int filter_count, int max_allowed) argument
913 const char* section = "Remote"; local
953 const char* section; local
[all...]

Completed in 4122 milliseconds

12345678