Home
last modified time | relevance | path

Searched refs:p_type (Results 1 – 25 of 76) sorted by relevance

1234

/external/lldb/test/functionalities/type_completion/
DTestTypeCompletion.py62 p_type = p_vector.GetType()
63 self.assertFalse(p_type.IsTypeComplete(), 'vector<T> complete but it should not be')
69 p_type = p_vector.GetType()
70 self.assertFalse(p_type.IsTypeComplete(), 'vector<T> complete but it should not be')
78 p_type = p_vector.GetType()
79 self.assertTrue(p_type.IsTypeComplete(), 'vector<T> should now be complete')
80 name_address_type = p_type.GetTemplateArgumentType(0)
90 p_type = p_vector.GetType()
91 self.assertTrue(p_type.IsTypeComplete(), 'vector<T> should now be complete')
92 name_address_type = p_type.GetTemplateArgumentType(0)
[all …]
/external/elfutils/src/tests/
Dshowptable.c91 const char *p_type = typenames[phdr->p_type]; in main() local
94 if (phdr->p_type >= PT_NUM) in main()
96 snprintf (buf, sizeof (buf), "%x", phdr->p_type); in main()
97 p_type = buf; in main()
101 cnt, p_type, in main()
120 if (phdr->p_type == PT_INTERP) in main()
Dalldts.c116 phdr[0].p_type = PT_PHDR; in main()
117 phdr[1].p_type = PT_DYNAMIC; in main()
/external/ipsec-tools/src/libipsec/
Dpolicy_parse.y103 static int p_dir, p_type, p_protocol, p_mode, p_level, p_reqid; variable
153 p_type = $2;
168 p_type = $4;
187 p_type = $5;
209 p_type = $4;
220 p_type = $6;
242 p_type = $6;
264 p_type = 0; /* ignored it by kernel */
443 if (p_type == IPSEC_POLICY_IPSEC) { in rule_check()
491 p->sadb_x_policy_type = p_type; in init_x_policy()
[all …]
/external/libunwind/src/coredump/
D_UCD_create.c166 cur->p_type = hdr64.p_type ; in _UCD_create()
192 cur->p_type = hdr32.p_type ; in _UCD_create()
212 Debug(2, "phdr[%03d]: type:%d", i, cur->p_type); in _UCD_create()
213 if (cur->p_type == PT_NOTE) in _UCD_create()
252 if (cur->p_type == PT_LOAD) in _UCD_create()
D_UCD_internal.h62 uint32_t p_type; member
/external/linux-tools-perf/src/tools/perf/util/
Dsymbol-minimal.c133 phdr->p_type = bswap_32(phdr->p_type); in filename__read_build_id()
138 if (phdr->p_type != PT_NOTE) in filename__read_build_id()
182 phdr->p_type = bswap_32(phdr->p_type); in filename__read_build_id()
187 if (phdr->p_type != PT_NOTE) in filename__read_build_id()
/external/libnfc-nci/src/nfc/ndef/
Dndef_utils.c463 UINT8 *NDEF_MsgGetFirstRecByType (UINT8 *p_msg, UINT8 tnf, UINT8 *p_type, UINT8 tlen) in NDEF_MsgGetFirstRecByType() argument
495 && (!memcmp (p_rec, p_type, tlen)) ) in NDEF_MsgGetFirstRecByType()
520 UINT8 *NDEF_MsgGetNextRecByType (UINT8 *p_cur_rec, UINT8 tnf, UINT8 *p_type, UINT8 tlen) in NDEF_MsgGetNextRecByType() argument
556 && (!memcmp (p_rec, p_type, tlen)) ) in NDEF_MsgGetNextRecByType()
837 UINT8 tnf, UINT8 *p_type, UINT8 type_len, in NDEF_MsgAddRec() argument
897 if (p_type) in NDEF_MsgAddRec()
898 memcpy (p_rec, p_type, type_len); in NDEF_MsgAddRec()
933 UINT8 tnf, UINT8 *p_type, UINT8 type_len, in NDEF_MsgInsertRec() argument
952 return NDEF_MsgAddRec (p_msg, max_size, p_cur_size, tnf, p_type, type_len, in NDEF_MsgInsertRec()
993 if (p_type) in NDEF_MsgInsertRec()
[all …]
Dndef_cho_utils.c567 UINT8 *p_rec, *p_type; in ndef_get_bt_oob_record() local
577 p_type = NDEF_RecGetType (p_rec, &tnf, &type_len); in ndef_get_bt_oob_record()
583 ||(memcmp (p_type, p_bt_oob_rec_type, BT_OOB_REC_TYPE_LEN))) in ndef_get_bt_oob_record()
/external/libnfc-nci/src/nfa/dm/
Dnfa_dm_ndef.c369 UINT8 *p_rec, *p_ndef_start, *p_type, *p_payload, *p_rec_end; in nfa_dm_ndef_handle_message() local
431 p_type = NDEF_RecGetType (p_rec, &tnf, &type_len); in nfa_dm_ndef_handle_message()
440 …if ((p_handler = nfa_dm_ndef_find_next_handler (NULL, tnf, p_type, type_len, p_payload, payload_le… in nfa_dm_ndef_handle_message()
455 …p_handler = nfa_dm_ndef_find_next_handler (p_handler, tnf, p_type, type_len, p_payload, payload_le… in nfa_dm_ndef_handle_message()
519 …p_handler = nfa_dm_ndef_find_next_handler (p_handler, tnf, p_type, type_len, p_payload, payload_le… in nfa_dm_ndef_handle_message()
/external/libnfc-nci/src/nfc/include/
Dndef_utils.h173 EXPORT_NDEF_API extern UINT8 *NDEF_MsgGetFirstRecByType (UINT8 *p_msg, UINT8 tnf, UINT8 *p_type, UI…
185 EXPORT_NDEF_API extern UINT8 *NDEF_MsgGetNextRecByType (UINT8 *p_cur_rec, UINT8 tnf, UINT8 *p_type,…
270 UINT8 tnf, UINT8 *p_type, UINT8 type_len,
286 UINT8 tnf, UINT8 *p_type, UINT8 type_len,
/external/elfutils/src/libdwfl/
Dcore-file.c131 notes->p_type = PT_NULL; in dwfl_report_core_segments()
142 switch (phdr->p_type) in dwfl_report_core_segments()
254 while (phdr.p_type != PT_LOAD in dwfl_elf_phdr_memory_callback()
281 if (phdr.p_type == PT_LOAD) in dwfl_elf_phdr_memory_callback()
413 if (phdr->p_type == PT_DYNAMIC) in __libdwfl_dynamic_vaddr_get()
457 if (likely (notes_phdr.p_type == PT_NOTE)) in dwfl_core_file_report()
Delf-from-memory.c237 if (phdrs.p32[i].p_type == PT_LOAD) in elf_from_remote_memory()
248 if (phdrs.p64[i].p_type == PT_LOAD) in elf_from_remote_memory()
300 if (phdrs.p32[i].p_type == PT_LOAD) in elf_from_remote_memory()
327 if (phdrs.p64[i].p_type == PT_LOAD) in elf_from_remote_memory()
Ddwfl_report_elf.c184 if (ph->p_type == PT_LOAD) in __libdwfl_elf_address_range()
207 if (ph->p_type == PT_LOAD in __libdwfl_elf_address_range()
/external/elfutils/src/libelf/
Delf32_getphdr.c156 CONVERT_TO (phdr[cnt].p_type, notcvt[cnt].p_type);
203 CONVERT (phdr[cnt].p_type);
/external/valgrind/coregrind/m_ume/
Delf.c167 if (ph->p_type != PT_LOAD) in mapelf()
186 if (ph->p_type != PT_LOAD) in mapelf()
355 switch(ph->p_type) { in VG_()
395 if (iph->p_type != PT_LOAD || iph->p_memsz == 0) in VG_()
/external/google-breakpad/src/common/linux/
Delf_core_dump.cc137 if (program->p_type == type) { in GetFirstProgramHeaderOfType()
152 if (program->p_type != PT_LOAD) in CopyData()
/external/libunwind/src/
Delfxx.c257 GET_PHDR_FIELD(ei, offset, &phdr, p_type); in elf_w()
258 if (phdr.p_type == PT_LOAD) { in elf_w()
396 if (phdr[i].p_type == PT_LOAD && phdr[i].p_offset == mapoff) { in elf_w()
606 if (phdr[i].p_type == PT_LOAD && phdr[i].p_offset == mapoff) { in elf_w()
620 GET_PHDR_FIELD(ei, offset, &phdr, p_type); in elf_w()
622 if (phdr.p_type == PT_LOAD && phdr.p_offset == mapoff) { in elf_w()
/external/elfutils/src/src/
Delflint.c849 if (phdr != NULL && phdr->p_type == PT_TLS) in check_symtab()
1006 if (phdr != NULL && phdr->p_type == PT_DYNAMIC) in check_symtab()
1271 if (phdr->p_type == PT_LOAD) in check_reloc_shdr()
1280 else if (phdr->p_type == PT_DYNAMIC) in check_reloc_shdr()
1745 if (phdr != NULL && phdr->p_type == PT_LOAD in check_dynamic()
2855 && phdr->p_type == PT_DYNAMIC) in unknown_dependency_p()
3770 && ((phdr->p_type == PT_LOAD in check_sections()
3772 || (phdr->p_type == PT_TLS in check_sections()
3927 if (phdr != NULL && (phdr->p_type == PT_LOAD || phdr->p_type == PT_TLS)) in check_sections()
4163 if (phdr->p_type >= PT_NUM && phdr->p_type != PT_GNU_EH_FRAME in check_program_header()
[all …]
/external/libpcap/Win32/Include/
Dinetprivate.h60 extern char *p_type(int type);
/external/clang/test/CodeGen/
D2009-01-21-InvalidIterator.c14 Elf64_Word p_type; member
/external/libunwind/src/ia64/
DGtables.c497 if (phdr->p_type == PT_LOAD) in callback()
504 else if (phdr->p_type == PT_IA_64_UNWIND) in callback()
506 else if (phdr->p_type == PT_DYNAMIC) in callback()
523 if (phdr->p_type == PT_LOAD && p_unwind->p_vaddr >= phdr->p_vaddr in callback()
/external/lldb/source/Plugins/Process/elf-core/
DProcessElfCore.cpp191 if (header->p_type == llvm::ELF::PT_NOTE) in DoLoadCore()
195 if (header->p_type == llvm::ELF::PT_LOAD) in DoLoadCore()
495 assert(segment_header && segment_header->p_type == llvm::ELF::PT_NOTE); in ParseThreadContextsFromNoteSegment()
/external/kernel-headers/original/uapi/linux/
Delf.h244 Elf32_Word p_type; member
255 Elf64_Word p_type; member
/external/libunwind/src/dwarf/
DGfind_unwind_table.c147 GET_PHDR_FIELD(ei, offset, &phdr, p_type); in dwarf_find_unwind_table_memory()
148 switch (phdr.p_type) { in dwarf_find_unwind_table_memory()
280 switch (phdr[i].p_type) in dwarf_find_unwind_table()

1234