Home
last modified time | relevance | path

Searched refs:type_str (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/lldb/examples/darwin/heap_find/
H A Dheap.py364 type_str = 'free'
366 type_str = 'malloc'
368 type_str = 'free'
370 type_str = 'generic'
372 type_str = 'stack'
374 type_str = 'stack (red zone)'
376 type_str = 'segment'
378 type_str = 'vm_region'
380 type_str = hex(type_flags)
381 return type_str
[all …]
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMemory.cpp400 std::string type_str(view_as_type_cstr); in DoExecute() local
408 while ((idx = type_str.find(keyword, idx)) != std::string::npos) { in DoExecute()
409 if (type_str[idx + keyword_len] == ' ' || in DoExecute()
410 type_str[idx + keyword_len] == '\t') { in DoExecute()
411 type_str.erase(idx, keyword_len + 1); in DoExecute()
418 bool done = type_str.empty(); in DoExecute()
420 idx = type_str.find_first_not_of(" \t"); in DoExecute()
422 type_str.erase(0, idx); in DoExecute()
425 if (type_str.empty()) in DoExecute()
428 switch (type_str[type_str.size() - 1]) { in DoExecute()
[all …]
/openbsd-src/lib/libcrypto/asn1/
H A Da_mbstr.c72 static int type_str(unsigned long value, void *arg);
163 if (traverse_string(in, len, inform, type_str, &mask) < 0) { in ASN1_mbstring_ncopy()
347 type_str(unsigned long value, void *arg) in type_str() function
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dcollect2.c3458 const char *type_str = (char *) 0; local
3462 case LDC_UNDEFINED: type_str = "UNDEFINED"; break;
3463 case LDC_CMD_MAP: type_str = "CMD_MAP"; break;
3464 case LDC_INTERPRETER: type_str = "INTERPRETER"; break;
3465 case LDC_STRINGS: type_str = "STRINGS"; break;
3466 case LDC_REGION: type_str = "REGION"; break;
3467 case LDC_RELOC: type_str = "RELOC"; break;
3468 case LDC_PACKAGE: type_str = "PACKAGE"; break;
3469 case LDC_SYMBOLS: type_str = "SYMBOLS"; break;
3470 case LDC_ENTRY: type_str = "ENTRY"; break;
[all …]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dmach_o.py1621 type_str = ''
1623 type_str = 'N_UNDF'
1625 type_str = 'N_ABS '
1627 type_str = 'N_SECT'
1629 type_str = 'N_PBUD'
1631 type_str = 'N_INDR'
1633 type_str = "??? (%#2.2x)" % type
1635 type_str += ' | PEXT'
1637 type_str += ' | EXT '
1638 return type_str
/openbsd-src/usr.sbin/radiusd/
H A Dradiusd.c1599 uint32_t imsg_type, const char *type_str) in radiusd_module_imsg()
1610 "`%s'", type_str, module->name); in radiusd_module_imsg()
1619 "received length is too big", type_str, module->name);
1631 "length is mismatch", type_str, module->name); in radiusd_module_recv_radpkt()
1621 radiusd_module_recv_radpkt(struct radiusd_module * module,struct imsg * imsg,uint32_t imsg_type,const char * type_str) radiusd_module_recv_radpkt() argument
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DType.h415 TypeAndOrName(const char *type_str);
/openbsd-src/gnu/lib/libiberty/src/
H A Dcplus-dem.c2282 string type_str; in demangle_arm_hp_template() local
2308 if (!do_type (work, &args, &type_str)) in demangle_arm_hp_template()
2311 string_appends (&arg, &type_str); in demangle_arm_hp_template()
2312 string_delete (&type_str); in demangle_arm_hp_template()
/openbsd-src/sys/dev/pci/drm/display/
H A Ddrm_dp_mst_topology.c1599 void *ptr, const char *type_str) in __dump_topology_ref_history()
1618 type_str, ptr); in __dump_topology_ref_history()
1596 __dump_topology_ref_history(struct drm_dp_mst_topology_ref_history * history,void * ptr,const char * type_str) __dump_topology_ref_history() argument
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp11653 std::string type_str; in tryToVectorizeList() local
11654 llvm::raw_string_ostream rso(type_str); in tryToVectorizeList()