Searched defs:section (Results 76 - 100 of 186) sorted by relevance

12345678

/external/bluetooth/bluedroid/osi/src/
H A Dconfig.c31 static section_t *section_find(const config_t *config, const char *section);
35 static entry_t *entry_find(const config_t *config, const char *section, const char *key);
69 bool config_has_section(const config_t *config, const char *section) { argument
71 assert(section != NULL);
73 return (section_find(config, section) != NULL);
76 bool config_has_key(const config_t *config, const char *section, const char *key) { argument
78 assert(section != NULL);
81 return (entry_find(config, section, key) != NULL);
84 int config_get_int(const config_t *config, const char *section, const char *key, int def_value) { argument
86 assert(section !
98 config_get_bool(const config_t *config, const char *section, const char *key, bool def_value) argument
115 config_get_string(const config_t *config, const char *section, const char *key, const char *def_value) argument
127 config_set_int(config_t *config, const char *section, const char *key, int value) argument
137 config_set_bool(config_t *config, const char *section, const char *key, bool value) argument
145 config_set_string(config_t *config, const char *section, const char *key, const char *value) argument
186 char section[1024]; local
219 section_t *section = calloc(1, sizeof(section_t)); local
237 section_find(const config_t *config, const char *section) argument
266 entry_find(const config_t *config, const char *section, const char *key) argument
[all...]
/external/chromium_org/chrome/app/
H A Dimage_pre_reader_win.cc94 // |section|.
97 // the section and the virtual size of the section.
101 // is padded to the PE page size if the entire section is initialized (i.e.,
104 // Any data after the initialized portion of the section will be soft-faulted
107 size_t GetPercentageOfSectionLength(const IMAGE_SECTION_HEADER* section, argument
109 DCHECK(section != NULL);
113 size_t initialized_length = std::min(section->SizeOfRawData,
114 section->Misc.VirtualSize);
124 // Helper function to read through a |percentage| of the given |section|
128 ReadThroughSection(HANDLE file_handle, const IMAGE_SECTION_HEADER* section, size_t percentage, void* temp_buffer, size_t temp_buffer_size) argument
262 const IMAGE_SECTION_HEADER* section = NULL; local
303 const IMAGE_SECTION_HEADER* section = NULL; local
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dpreferences.cc602 void Preferences::SetLanguageConfigStringListAsCSV(const char* section, argument
615 if (section == std::string(language_prefs::kGeneralSectionName) &&
/external/chromium_org/chrome/browser/sync/
H A Dabout_sync_util.cc27 // Creates a 'section' for display on about:sync, consisting of a title and a
28 // list of fields. Returns a pointer to the new section. Note that
29 // |parent_list|, not the caller, owns the newly added section.
32 base::DictionaryValue* section = new base::DictionaryValue(); local
34 section->SetString("title", title);
35 section->Set("data", section_contents);
36 section->SetBoolean("is_sensitive", false);
37 parent_list->Append(section);
45 base::DictionaryValue* section = new base::DictionaryValue(); local
47 section
72 StringSyncStat(base::ListValue* section, const std::string& key) argument
101 BoolSyncStat(base::ListValue* section, const std::string& key) argument
124 IntSyncStat(base::ListValue* section, const std::string& key) argument
[all...]
/external/chromium_org/chrome_elf/blacklist/
H A Dblacklist_interceptions.cc88 bool IsModuleValidImageSection(HANDLE section, argument
94 if (!section || !base || !view_size || offset)
99 NTSTATUS ret = g_nt_query_section_func(section, SectionBasicInformation,
174 HANDLE section,
184 NTSTATUS ret = orig_MapViewOfSection(section, process, base, zero_bits,
189 !IsModuleValidImageSection(section, base, offset, view_size)) {
203 // full path of the mapped section.
243 HANDLE section,
256 ret = BlNtMapViewOfSectionImpl(orig_MapViewOfSection, section, process,
268 HANDLE section, HANDL
172 BlNtMapViewOfSectionImpl( NtMapViewOfSectionFunction orig_MapViewOfSection, 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
241 BlNtMapViewOfSection( NtMapViewOfSectionFunction orig_MapViewOfSection, 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
267 BlNtMapViewOfSection64( 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
[all...]
/external/chromium_org/sandbox/win/src/
H A DWow64.cc26 HANDLE section; // First argument of the call. member in struct:__anon10591::PatchInfo32
123 offsetof(PatchInfo32, section), &written))
125 if (offsetof(PatchInfo32, section) != written)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.h77 RenderTableSection* section() const { return toRenderTableSection(parent()->parent()); } function in class:blink::FINAL
185 if (section()->hasSameDirectionAs(table()))
194 if (section()->hasSameDirectionAs(table()))
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DShortcutsScreen.js45 section: function(name)
47 var section = this._sections[name];
48 if (!section)
49 this._sections[name] = section = new WebInspector.ShortcutsSection(name);
50 return section;
59 for (var section in this._sections)
60 orderedSections.push(this._sections[section]);
152 headLine.createChild("div", "help-section-title help-cell").textContent = this.name;
218 var elementsSection = WebInspector.shortcutsScreen.section(WebInspector.UIString("Elements Panel"));
230 var stylesPaneSection = WebInspector.shortcutsScreen.section(WebInspecto
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_conf.c139 ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
320 * section to an extension STACK.
324 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, argument
331 if (!(nval = NCONF_get_section(conf, section))) return 0;
345 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, argument
351 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
356 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, argument
362 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
367 int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, argument
374 i = X509V3_EXT_add_nconf_sk(conf, ctx, section, s
384 X509V3_get_string(X509V3_CTX *ctx, char *name, char *section) argument
415 X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) argument
422 nconf_get_string(void *db, char *section, char *value) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dlinux.cc76 // On X86, there is exactly one info section per processor.
190 SimpleMap section; local
191 while (ParseSection(&section)) {
192 key_val_pairs->push_back(section);
193 section.clear();
199 // Parses the next section in the filestream and places the found key-value
/external/chromium_org/tools/relocation_packer/src/
H A Delf_file.cc15 // of the shared library file, so expanding the program header section
49 // android packed relocations section.
61 // Get section data. Checks that the section has exactly one data entry,
62 // so that the section size and the data size are the same. True in
64 // by ensuring that a call to elf_getdata(section, data) returns NULL as
66 Elf_Data* GetSectionData(Elf_Scn* section) { argument
67 Elf_Data* data = elf_getdata(section, NULL);
68 CHECK(data && elf_getdata(section, data) == NULL);
72 // Rewrite section dat
212 Elf_Scn* section = NULL; local
307 Elf_Scn* section = NULL; local
421 Elf_Scn* section = NULL; local
459 Elf_Scn* section = NULL; local
[all...]
/external/deqp/executor/
H A DxeTestLogWriter.cpp344 const ri::Section& section = static_cast<const ri::Section&>(item); local
346 << Writer::Attribute("Name", section.name)
347 << Writer::Attribute("Description", section.description);
349 for (int ndx = 0; ndx < section.items.getNumItems(); ndx++)
350 writeResultItem(section.items.getItem(ndx), dst);
/external/lldb/source/API/
H A DSBAddress.cpp45 SBAddress::SBAddress (lldb::SBSection section, lldb::addr_t offset) : argument
46 m_opaque_ap(new Address (section.GetSP(), offset))
89 SBAddress::SetAddress (lldb::SBSection section, lldb::addr_t offset) argument
92 addr.SetSection (section.GetSP());
152 // Check if we weren't were able to resolve a section offset address.
154 // stack or heap, so we should just have an address with no section and
/external/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp249 Section *section = section_list->GetSectionAtIndex (i).get(); local
250 if (section)
252 lldb::addr_t section_vm_addr = section->GetFileAddress();
253 FileRange file_range (section->GetFileOffset(), section->GetFileSize());
255 section->GetByteSize(),
260 vm_addr = section->GetFileAddress();
282 // After we have added this section to our m_core_aranges map,
283 // we can check the start of the section to see if it might
/external/lldb/source/Symbol/
H A DObjectFile.cpp467 ObjectFile::ReadSectionData (const Section *section, off_t section_offset, void *dst, size_t dst_len) const argument
470 if (section->GetObjectFile() != this)
471 return section->GetObjectFile()->ReadSectionData (section, section_offset, dst, dst_len);
479 const addr_t base_load_addr = section->GetLoadBaseAddress (&process_sp->GetTarget());
486 const uint64_t section_file_size = section->GetFileSize();
493 return CopyData (section->GetFileOffset() + section_offset, section_dst_len, dst);
497 if (section->GetType() == eSectionTypeZeroFill)
499 const uint64_t section_size = section->GetByteSize();
513 // Get the section dat
516 ReadSectionData(const Section *section, DataExtractor& section_data) const argument
551 MemoryMapSectionData(const Section *section, DataExtractor& section_data) const argument
[all...]
/external/llvm/lib/MC/
H A DMCWin64EH.cpp223 const MCSection *section = &func->getSection(); local
225 if ((COFFSection = dyn_cast<MCSectionCOFF>(section))) {
/external/openssl/crypto/x509v3/
H A Dv3_conf.c73 static char *conf_lhash_get_string(void *db, char *section, char *value);
74 static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section);
140 ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
321 * section to an extension STACK.
325 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, argument
332 if (!(nval = NCONF_get_section(conf, section))) return 0;
346 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, argument
352 return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
357 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, argument
363 return X509V3_EXT_add_nconf_sk(conf, ctx, section, s
368 X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req) argument
385 X509V3_get_string(X509V3_CTX *ctx, char *name, char *section) argument
416 X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) argument
423 nconf_get_string(void *db, char *section, char *value) argument
476 conf_lhash_get_string(void *db, char *section, char *value) argument
[all...]
/external/oprofile/libutil++/
H A Dop_bfd.h54 asection const * section(void) const { return bfd_symbol->section; } function in class:op_bfd_symbol
70 /// the offset of this symbol relative to the begin of the section's
73 /// the section filepos for this symbol
75 /// the section vma for this symbol
169 * If passed 0, return the file position of the .text section.
170 * Otherwise, return the filepos of a section with a matching
222 * a %SEC_CODE section.
276 /// true if at least one section has (flags & SEC_DEBUGGING) != 0
288 /// kernel modules where all code section vm
[all...]
/external/smack/src/org/xbill/DNS/
H A DMessage.java157 * Adds a record to a section of the Message, and adjusts the header.
162 addRecord(Record r, int section) { argument
163 if (sections[section] == null)
164 sections[section] = new LinkedList();
165 header.incCount(section);
166 sections[section].add(r);
170 * Removes a record from a section of the Message, and adjusts the header.
175 removeRecord(Record r, int section) { argument
176 if (sections[section] != null && sections[section]
190 removeAllRecords(int section) argument
201 findRecord(Record r, int section) argument
225 findRRset(Name name, int type, int section) argument
334 getSectionArray(int section) argument
355 getSectionRRsets(int section) argument
402 sectionToWire(DNSOutput out, int section, Compression c, int maxLength) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.c124 static void find_addr_sect(bfd *abfd, asection *section, void *obj) argument
133 if (!(bfd_get_section_vma(abfd, section)))
136 vma = bfd_get_section_vma(abfd, section);
140 size = bfd_get_section_size(section);
144 data->found = bfd_find_nearest_line(abfd, section, syms,
/external/wpa_supplicant_8/src/utils/
H A Dtrace.c124 static void find_addr_sect(bfd *abfd, asection *section, void *obj) argument
133 if (!(bfd_get_section_vma(abfd, section)))
136 vma = bfd_get_section_vma(abfd, section);
140 size = bfd_get_section_size(section);
144 data->found = bfd_find_nearest_line(abfd, section, syms,
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.c124 static void find_addr_sect(bfd *abfd, asection *section, void *obj) argument
133 if (!(bfd_get_section_vma(abfd, section)))
136 vma = bfd_get_section_vma(abfd, section);
140 size = bfd_get_section_size(section);
144 data->found = bfd_find_nearest_line(abfd, section, syms,
/external/chromium_org/base/win/
H A Dpe_image.cc87 PIMAGE_SECTION_HEADER PEImage::GetSectionHeader(UINT section) const {
91 if (section < nt_headers->FileHeader.NumberOfSections)
92 return first_section + section;
116 PIMAGE_SECTION_HEADER section; local
118 for (UINT i = 0; NULL != (section = GetSectionHeader(i)); i++) {
121 PEImage::RVAToAddr(section->VirtualAddress));
123 DWORD size = section->Misc.VirtualSize;
126 return section;
141 PIMAGE_SECTION_HEADER section = GetSectionHeader(i); local
142 if (0 == _strnicmp(reinterpret_cast<LPCSTR>(section
243 PIMAGE_SECTION_HEADER section = GetSectionHeader(0); local
[all...]
/external/chromium_org/chrome/browser/ui/android/autofill/
H A Dautofill_dialog_controller_android.cc58 // Constructs |inputs| for the SECTION_CC_BILLING section.
78 // Constructs |inputs| for the SECTION_SHIPPING section.
99 DialogSection section,
105 if ((section == SECTION_CC_BILLING && !full_wallet->billing_address()) ||
106 (section == SECTION_SHIPPING && !full_wallet->shipping_address())) {
120 section == SECTION_CC_BILLING
127 DialogSection section,
131 DCHECK(section == SECTION_CC_BILLING || section == SECTION_SHIPPING);
133 if (section
98 FillOutputForSectionWithComparator( DialogSection section, const DetailInputs& inputs, const FormStructure::InputFieldComparator& compare, FormStructure& form_structure, FullWallet* full_wallet, const base::string16& email_address) argument
126 FillOutputForSection( DialogSection section, FormStructure& form_structure, FullWallet* full_wallet, const base::string16& email_address) argument
154 IsSectionInputUsedInFormStructure(DialogSection section, ServerFieldType input_type, const FormStructure& form_structure) argument
166 IsSectionInputsUsedInFormStructure(DialogSection section, const ServerFieldType* input_types, const size_t input_types_size, const FormStructure& form_structure) argument
[all...]
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_views.h87 virtual void UpdateSection(DialogSection section) OVERRIDE;
89 virtual void FillSection(DialogSection section,
91 virtual void GetUserInput(DialogSection section,
99 virtual void ValidateSection(DialogSection section) OVERRIDE;
208 // Runs the suggestion menu (triggered by each section's |suggested_button|.
305 // Sets the visual appearance of the section to active (considered active
416 // text. This is currently only used to show a CVC field for the CC section.
443 // section. None of the member pointers are owned.
445 explicit DetailsGroup(DialogSection section);
448 // The section thi
449 const DialogSection section; member in struct:autofill::AutofillDialogViews::DetailsGroup
[all...]

Completed in 733 milliseconds

12345678