Searched defs:die (Results 1 - 25 of 80) sorted by last modified time

1234

/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf3.c464 static UWord cook_die( CUConst* cc, UWord die )
467 die += cc->types_cuOff_bias;
469 die += cc->alt_cuOff_bias;
470 return die;
477 static UWord cook_die_using_form( CUConst *cc, UWord die, DW_FORM form) argument
480 return die;
482 return die + cc->alt_cuOff_bias;
483 return cook_die( cc, die );
489 static UWord uncook_die( CUConst *cc, UWord die, /*OUT*/Bool *type_flag, argument
499 if (die >
1035 UWord die; member in struct:D3SignatureType
[all...]
/external/strace/
H A Dstrace.c254 static void die(void) __attribute__ ((noreturn));
255 static void die(void) function
308 die();
324 die();
657 * may create bogus empty FILE.<nonexistant_pid>, and then die.
/external/smali/
H A Dgradlew22 die ( ) { function
79 die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
86 which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
/external/scrypt/
H A Dimport_scrypt.sh37 function die() { function
59 die "scrypt patch directory patches/ not found"
63 die "scrypt.version not found"
68 die "Invalid scrypt.version; see README.android for more information"
75 die "scrypt.config not found"
80 die "Invalid scrypt.config; see README.android for more information"
461 patch -p1 --merge < ../patches/$i || die "Could not apply patches/$i. Fix source and run: $0 regenerate patches/$i"
487 LC_ALL=C TZ=UTC0 diff -aup $SCRYPT_DIR_ORIG/$i $SCRYPT_DIR/$i >> $patch && die "ERROR: No diff for patch $path in file $i"
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java285 public void setDieWhenCollected(boolean die) { argument
289 public void setDieOnAttack(boolean die) { argument
290 mDieOnAttack = die;
H A DLifetimeComponent.java22 * This component allows objects to die and be deleted when their life is reduced to zero or they
60 public void setDieWhenInvisible(boolean die) { argument
61 mDieWhenInvisible = die;
83 die(parentObject);
98 die(parentObject);
121 die(parentObject);
126 private void die(GameObject parentObject) { method in class:LifetimeComponent
184 public final void setDieOnHitBackground(boolean die) { argument
185 mDieOnHitBackground = die;
/external/qemu/
H A Dposix-aio-compat.c83 static void die(const char *what) function
358 if (kill(pid, aiocb->ev_signo)) die("kill failed");
376 if (sigfillset(&set)) die("sigfillset");
377 if (sigprocmask(SIG_SETMASK, &set, &oldset)) die("sigprocmask");
381 if (sigprocmask(SIG_SETMASK, &oldset, NULL)) die("sigprocmask restore");
512 die("write()");
/external/ppp/pppd/
H A Dmain.c465 die(0);
640 die(status);
806 die(1); /* or just return? */
829 /* wait for parent to finish updating pid & lock files and die */
1147 * die - clean up state and exit with the specified status.
1150 die(status) function
1499 die(127);
1887 * novm - log an error message saying we ran out of memory, and die.
/external/ppp/pppd/plugins/rp-pppoe/
H A Dpppoe-discovery.c23 void die(int status) function
/external/openssl/
H A Dimport_openssl.sh38 function die() { function
60 die "OpenSSL patch directory patches/ not found"
64 die "openssl.version not found"
69 die "Invalid openssl.version; see README.android for more information"
76 die "openssl.config not found"
81 die "Invalid openssl.config; see README.android for more information"
696 patch -p1 < $i || die "Could not apply $i. Fix source and run: $0 regenerate patches/${i##*/}"
722 LC_ALL=C TZ=UTC0 diff -aup $OPENSSL_DIR_ORIG/$i $OPENSSL_DIR/$i >> $patch && die "ERROR: No diff for patch $path in file $i"
/external/llvm/autoconf/
H A DAutoRegen.sh3 die() { function
30 test -f $configfile || die "Can't find 'autoconf' dir; please cd into it first"
32 test $? -eq 0 || die "Your autoconf was not detected as being $want_autoconf_version_clean"
34 test $? -eq 0 || die "Your aclocal was not detected as being $want_aclocal_version_clean"
36 test $? -eq 0 || die "Your autoheader was not detected as being $want_autoheader_version_clean"
48 aclocal --force -I $cwd/m4 || die "aclocal failed"
50 autoconf --force --warnings=all -o ../$outfile $configfile || die "autoconf failed"
53 autoheader --warnings=all -I autoconf -I autoconf/m4 autoconf/$configfile || die "autoheader failed"
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp32 void DwarfAccelTable::AddName(StringRef Name, MCSymbol *StrSym, const DIE *die, argument
35 // If the string is in the list already then add this die to the list
40 DIEs.Values.push_back(new (Allocator) HashDataContents(die, Flags));
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dusage.c58 void die(const char *err, ...) function
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp174 DWARFDebugInfoEntry die; local
197 die.FastExtract (debug_info_data, this, fixed_form_sizes, &offset))
201 // die.GetOffset(),
203 // DW_TAG_value_to_name (die.Tag()),
204 // die.HasChildren() ? " *" : "");
206 const bool null_die = die.IsNULL();
209 uint64_t base_addr = die.GetAttributeValueAsUnsigned(m_dwarf2Data, this, DW_AT_low_pc, LLDB_INVALID_ADDRESS);
211 base_addr = die.GetAttributeValueAsUnsigned(m_dwarf2Data, this, DW_AT_entry_pc, 0);
214 AddDIE (die);
235 die
395 const DWARFDebugInfoEntry* die = DIE(); local
452 const DWARFDebugInfoEntry* die = DIE(); local
633 const DWARFDebugInfoEntry &die = *pos; local
959 const DWARFDebugInfoEntry *die = GetCompileUnitDIEOnly(); local
[all...]
H A DDWARFCompileUnit.h86 AddDIE (DWARFDebugInfoEntry& die) argument
99 m_die_array.push_back(die);
154 // AddGlobal (const DWARFDebugInfoEntry* die);
H A DDWARFDIECollection.cpp22 DWARFDIECollection::Insert(const DWARFDebugInfoEntry *die) argument
25 iterator insert_pos = upper_bound(m_dies.begin(), end_pos, die);
26 if (insert_pos != end_pos && (*insert_pos == die))
28 m_dies.insert(insert_pos, die);
33 DWARFDIECollection::Append (const DWARFDebugInfoEntry *die) argument
35 m_dies.push_back (die);
H A DDWARFDebugInfo.cpp294 DWARFDebugInfoEntry* die = NULL; local
296 die = (*cu_handle)->GetDIEPtr(die_offset);
298 if (die == NULL)
304 die = cu_sp->GetDIEPtr(die_offset);
307 if (die == NULL)
309 return die;
339 DWARFDebugInfoEntry* die,
347 if (die)
349 cu->AddDIE(*die);
371 DWARFDebugInfo::AddDIE(DWARFDebugInfoEntry& die)
335 DWARFDebugInfo_ParseCallback( SymbolFileDWARF* dwarf2Data, DWARFCompileUnitSP& cu_sp, DWARFDebugInfoEntry* die, const dw_offset_t next_offset, const uint32_t curr_depth, void* userData ) argument
484 DumpCallback( SymbolFileDWARF* dwarf2Data, DWARFCompileUnitSP& cu_sp, DWARFDebugInfoEntry* die, const dw_offset_t next_offset, const uint32_t curr_depth, void* userData ) argument
702 const DWARFDebugInfoEntry* die = cu_sp->DIE(); local
727 FindCallbackString( SymbolFileDWARF* dwarf2Data, DWARFCompileUnitSP& cu_sp, DWARFDebugInfoEntry* die, const dw_offset_t next_offset, const uint32_t curr_depth, void* userData ) argument
[all...]
H A DDWARFDebugPubnames.cpp103 const DWARFDebugInfoEntry *die = dies.GetDIEPtrAtIndex(die_idx); local
108 const size_t num_attributes = die->GetAttributes(dwarf2Data, cu, fixed_form_sizes, attributes);
113 dw_tag_t tag = die->Tag();
142 const DWARFDebugInfoEntry* parent_die = die->GetParent();
191 pubnames_set.AddDescriptor(die->GetOffset() - cu_offset, mangled ? mangled : name);
233 const DWARFDebugInfoEntry *die = dies.GetDIEPtrAtIndex(die_idx); local
234 const char *name = die->GetAttributeValueAsString(dwarf2Data, cu, DW_AT_name, NULL);
238 pubnames_set.AddDescriptor(die->GetOffset() - cu_offset, name);
H A DSymbolFileDWARF.cpp119 void Push (DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die) argument
121 m_dies.push_back (DIEInfo(cu, die));
133 const DWARFDebugInfoEntry *die = m_dies[i].die; local
135 die->GetQualifiedName(dwarf, cu, qualified_name);
138 die->GetOffset(),
139 DW_TAG_value_to_name(die->Tag()),
159 Push (DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die) argument
162 m_die_stack.Push (cu, die);
182 die(
186 const DWARFDebugInfoEntry *die; member in struct:DIEStack::DIEInfo
239 GetTypes(DWARFCompileUnit* cu, const DWARFDebugInfoEntry *die, dw_offset_t min_die_offset, dw_offset_t max_die_offset, uint32_t type_mask, TypeSet &type_set) argument
433 const DWARFDebugInfoEntry *die; local
1021 ParseCompileUnitFunction(const SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die) argument
1125 const DWARFDebugInfoEntry *die = dwarf_cu->GetCompileUnitDIEOnly(); local
1149 const DWARFDebugInfoEntry *die = function_dies.GetDIEPtrAtIndex(func_idx); local
1281 ParseFunctionBlocks( const SymbolContext& sc, Block *parent_block, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, addr_t subprogram_low_pc, uint32_t depth ) argument
1407 ParseTemplateDIE(DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, ClangASTContext::TemplateParameterInfos &template_param_infos) argument
1705 const DWARFDebugInfoEntry *die; local
2246 const DWARFDebugInfoEntry* die = debug_info->GetDIEPtr(type_uid, &cu_sp); local
2279 ResolveTypeUID(DWARFCompileUnit* cu, const DWARFDebugInfoEntry* die, bool assert_not_being_parsed) argument
2344 const DWARFDebugInfoEntry* die = m_forward_decl_clang_type_to_die.lookup (clang_type_no_qualifiers.GetOpaqueQualType()); local
2354 const DWARFDebugInfoEntry* die = m_forward_decl_clang_type_to_die.lookup (clang_type_no_qualifiers.GetOpaqueQualType()); local
3037 DIEIsInNamespace(const ClangNamespaceDecl *namespace_decl, DWARFCompileUnit* cu, const DWARFDebugInfoEntry* die) argument
3147 const DWARFDebugInfoEntry* die = NULL; local
3257 const DWARFDebugInfoEntry* die = NULL; local
3297 const DWARFDebugInfoEntry *die = DebugInfo()->GetDIEPtrWithCompileUnitHint (die_offset, &dwarf_cu); local
3303 ResolveFunction(DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, SymbolContextList& sc_list) argument
3414 FunctionDieMatchesPartialName(const DWARFDebugInfoEntry* die, const DWARFCompileUnit *dwarf_cu, uint32_t name_type_mask, const char *partial_name, const char *base_name_start, const char *base_name_end) argument
3593 const DWARFDebugInfoEntry *die = info->GetDIEPtrWithCompileUnitHint (die_offset, &dwarf_cu); local
3628 const DWARFDebugInfoEntry* die = info->GetDIEPtrWithCompileUnitHint (die_offset, &dwarf_cu); local
3665 const DWARFDebugInfoEntry* die = info->GetDIEPtrWithCompileUnitHint (die_offset, &dwarf_cu); local
3777 const DWARFDebugInfoEntry* die = info->GetDIEPtrWithCompileUnitHint (die_offsets[i], &dwarf_cu); local
3806 const DWARFDebugInfoEntry* die = info->GetDIEPtrWithCompileUnitHint (die_offsets[i], &dwarf_cu); local
3959 const DWARFDebugInfoEntry* die = NULL; local
4062 const DWARFDebugInfoEntry* die = NULL; local
4157 const DWARFDebugInfoEntry *die; local
4323 const DWARFDebugInfoEntry *die; local
4402 const DWARFDebugInfoEntry *die; local
4484 GetTypeForDIE(DWARFCompileUnit *dwarf_cu, const DWARFDebugInfoEntry* die) argument
4514 const DWARFDebugInfoEntry* die = DebugInfo()->GetDIEPtr(die_offset, &cu_sp); local
4529 const DWARFDebugInfoEntry* die = debug_info->GetDIEPtr(die_offset, &cu_sp); local
4538 ResolveNamespaceDIE(DWARFCompileUnit *dwarf_cu, const DWARFDebugInfoEntry *die) argument
4585 GetClangDeclContextForDIE(const SymbolContext &sc, DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die) argument
4613 GetClangDeclContextContainingDIE(DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const DWARFDebugInfoEntry **decl_ctx_die_copy) argument
4666 GetDeclContextDIEContainingDIE(DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die) argument
4774 FindCompleteObjCDefinitionTypeForDIE(const DWARFDebugInfoEntry *die, const ConstString &type_name, bool must_be_implementation) argument
4980 FindDefinitionTypeForDIE(DWARFCompileUnit* cu, const DWARFDebugInfoEntry *die, const ConstString &type_name) argument
5612 ParseType(const SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, bool *type_is_new_ptr) argument
6561 LinkDeclContextToDIE(ClangASTContext::GetAsDeclContext(objc_method_decl), die); local
6719 LinkDeclContextToDIE(ClangASTContext::GetAsDeclContext(cxx_method_decl), die); local
7022 ParseTypes( const SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, bool parse_siblings, bool parse_children ) argument
7157 const DWARFDebugInfoEntry* die = NULL; local
7220 ParseVariableDIE( const SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, const lldb::addr_t func_low_pc ) argument
7544 const DWARFDebugInfoEntry *die = info->GetDIEPtrWithCompileUnitHint(func_die_offset, result_die_cu_handle); local
7555 FindBlockContainingSpecification(DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, dw_offset_t spec_block_die_offset, DWARFCompileUnit **result_die_cu_handle) argument
7619 const DWARFDebugInfoEntry *die = orig_die; local
7808 const DWARFDebugInfoEntry* die = NULL; local
[all...]
H A DSymbolFileDWARF.h234 GetCachedClangDeclContextForDIE (const DWARFDebugInfoEntry *die) argument
236 DIEToDeclContextMap::iterator pos = m_die_to_decl_ctx.find(die);
244 GetClangDeclContextForDIE (const lldb_private::SymbolContext &sc, DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die);
251 const DWARFDebugInfoEntry *die,
258 GetDeclContextDIEContainingDIE (DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die);
305 const DWARFDebugInfoEntry* die);
313 lldb_private::Function * ParseCompileUnitFunction (const lldb_private::SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die);
317 const DWARFDebugInfoEntry *die,
320 size_t ParseTypes (const lldb_private::SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, bool parse_siblings, bool parse_children);
321 lldb::TypeSP ParseType (const lldb_private::SymbolContext& sc, DWARFCompileUnit* dwarf_cu, const DWARFDebugInfoEntry *die, boo
478 LinkDeclContextToDIE(clang::DeclContext *decl_ctx, const DWARFDebugInfoEntry *die) argument
[all...]
H A DSymbolFileDWARFDebugMap.cpp1213 SymbolFileDWARFDebugMap::FindCompleteObjCDefinitionTypeForDIE (const DWARFDebugInfoEntry *die, argument
1221 type_sp = oso_dwarf->FindCompleteObjCDefinitionTypeForDIE (die, type_name, must_be_implementation);
H A DUniqueDWARFASTType.cpp25 const DWARFDebugInfoEntry *die,
35 if (pos->m_die->Tag() == die->Tag())
45 const DWARFDebugInfoEntry *parent_arg_die = die->GetParent();
21 Find( SymbolFileDWARF *symfile, const DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry ) const argument
H A DUniqueDWARFASTType.h46 DWARFDebugInfoEntry *die,
52 m_die (die),
122 const DWARFDebugInfoEntry *die,
155 const DWARFDebugInfoEntry *die,
164 return pos->second.Find (symfile, cu, die, decl, byte_size, entry);
43 UniqueDWARFASTType(lldb::TypeSP &type_sp, SymbolFileDWARF *symfile, DWARFCompileUnit *cu, DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, int32_t byte_size) argument
152 Find(const lldb_private::ConstString &name, SymbolFileDWARF *symfile, const DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
/external/libvpx/libvpx/build/make/
H A Dconfigure.sh24 die() { function
378 die "${AS} ${ASFLAGS} does not support section alignment (nasm <=2.08?)"
544 [ -d "${optval}" ] || die "Not a directory: ${optval}"
550 || die "Must be yasm, nasm or auto: ${optval}"
560 [ -d "${optval}" ] || die "Not a directory: ${optval}"
564 die "Option ${opt} requires argument"
591 die "Libdir ${libdir} must be a subdirectory of ${prefix}"
701 || die "Unrecognized toolchain '${toolchain}'"
977 die "Couldn't find CodeSourcery GCC from PATH"
1122 && die "Neithe
[all...]
H A Dgen_msvs_def.sh38 die() { function
77 [ -n "$name" ] || die "Library name (--name) must be specified!"

Completed in 513 milliseconds

1234