Searched refs:find (Results 26 - 34 of 34) sorted by relevance

12

/xnu-2782.1.97/tools/lldbmacros/
H A Dxnu.py233 if obj.__name__.find("Test") != 0 :
288 raise RuntimeError("Unable to find lldb thread for tid={0:d} thread = {1:#018x} (#16049947: have you put 'settings set target.load-script-from-symbol-file true' in your .lldbinit?)".format(tid, thread_obj))
479 if command_args[-1].lower().find('dis') >=0 and config['debug']:
482 elif command_args[-1].lower().find('dis') < 0 and not config['debug']:
525 and need to find the appropriate symbols. Beware that if you've
618 if len(cmd_args) > 0 and cmd_args[0].lower().find('disable') >=0:
H A Dmemory.py49 if result.split(":")[1].strip().find('None') == -1 :
344 function calling into zalloc and use the countpcs command to find out how often that pc occurs in the log.
377 """ Zone leak debugging: find and print the oldest record in the log.
379 Once it prints a stack trace, find the pc of the caller above all the zalloc, kalloc and
1093 # because of <rdar://problem/12683084>, we can't find summaries directly
1152 This is particularly useful to find if some kext was unloaded before this crash'ed state.
1242 raise ArgumentError("Unable to find load address for module described at %s " % exec_full_path)
1814 if len(result.split("\n")) > 2 and result.find('VREG') != -1 and len(result.splitlines()[2].split()) > 5:
/xnu-2782.1.97/tools/tests/perf_index/
H A DMakefile3 CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
/xnu-2782.1.97/bsd/hfs/
H A Dhfs_search.c512 register ConstUniCharArrayPtr find, register ItemCount f_len, int caseSensitive )
522 } while (UnicodeBinaryCompare(str++, f_len, find, f_len) != 0);
528 } while (FastUnicodeCompare(str++, f_len, find, f_len) != 0);
536 ComparePartialPascalName ( register ConstStr31Param str, register ConstStr31Param find )
539 register u_char f_len = find[0];
552 if (FastRelString(tsp++, find) == 0)
1101 * (i.e. find all objects that DON'T match).
511 ComparePartialUnicodeName(register ConstUniCharArrayPtr str, register ItemCount s_len, register ConstUniCharArrayPtr find, register ItemCount f_len, int caseSensitive ) argument
/xnu-2782.1.97/bsd/netinet6/
H A Dnd6_prproxy.c720 nd6log2((LOG_ERR, "%s: failed to find forwarding prefix "
1171 * the soliciting node's address. Give up if we can't find it.
1370 struct nd6_prproxy_soltgt find, *soltgt; local
1388 find.soltgt_key.taddr = *taddr; /* search key */
1390 soltgt = RB_FIND(prproxy_sols_tree, &pr->ndpr_prproxy_sols, &find);
1435 struct nd6_prproxy_soltgt find, *soltgt; local
1446 find.soltgt_key.taddr = *taddr; /* search key */
1448 soltgt = RB_FIND(prproxy_sols_tree, &pr->ndpr_prproxy_sols, &find);
/xnu-2782.1.97/tools/tests/xnu_quick_test/
H A Dmakefile16 CC := $(shell xcrun -sdk "$(SDKROOT)" -find cc)
19 CODESIGN := $(shell xcrun -sdk "$(SDKROOT)" -find codesign)
/xnu-2782.1.97/tools/lldbmacros/core/
H A Dcvalue.py242 if tname.find('uint') >= 0 or tname.find('unsigned') >= 0:
H A Dkernelcore.py169 [] of SBSymbol: In case we don't find anything than empty array is returned.
180 if str(addr).strip().find("0x") == 0 :
249 raise NameError("Failed to find global variable '{0}'".format(v))
H A Doperating_system.py701 if plugin_string.find("kdp") >=0:
728 if plugin_string.find('core') >= 0 and self.target_arch == archX86_64:
774 print "FATAL FAILURE: Unable to find kdp_thread state for this connection."
844 print "FATAL ERROR: Could not find thread with id %d" % tid

Completed in 90 milliseconds

12