Searched refs:symbol (Results 1 - 8 of 8) sorted by relevance

/darwin-on-arm/xnu/libsyscall/xcodescripts/
H A Dcreate-syscalls.pl30 # syscall.master file to get the symbol names and number of arguments,
293 # last thing to do, if we aliased over a first class symbol, we need
312 my ($f, $symbol) = @_;
317 push(@conditions, "defined(__${arch}__)") unless grep { $_ eq $arch } @{$$symbol{except}};
323 print $f "#define __SYSCALL_32BIT_ARG_BYTES $$symbol{bytes}\n";
326 my $nc = ($is_cancel{$$symbol{syscall}} ? "cerror" : "cerror_nocancel");
328 printf $f "__SYSCALL2(%s, %s, %d, %s)\n", $$symbol{asm_sym}, $$symbol{syscall}, $$symbol{nargs}, $nc;
329 if (!$$symbol{is_privat
[all...]
/darwin-on-arm/xnu/SETUP/kextsymboltool/
H A Dkextsymboltool.c156 struct symbol { struct
162 struct symbol * list;
177 * Function for qsort for comparing symbol list names.
182 struct symbol * left = (struct symbol *) _left;
183 struct symbol * right = (struct symbol *) _right;
189 * Function for bsearch for finding a symbol name.
196 struct symbol * cmp = (struct symbol *) _cm
[all...]
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dfbt_x86.c783 * The fbt entry chain is in place, one entry point per symbol.
784 * The fbt return chain can have multiple return points per symbol.
985 /* Check that the symbol is a global and that it has a name. */
1018 dtrace_symbol_t* symbol = &module_symbols->dtmodsyms_symbols[i]; local
1019 char* name = symbol->dtsym_name;
1031 __provide_probe_32(ctl, (uintptr_t)symbol->dtsym_addr, (uintptr_t)(symbol->dtsym_addr + symbol->dtsym_size), modname, name, (machine_inst_t*)(uintptr_t)symbol->dtsym_addr);
1302 * The fbt entry chain is in place, one entry point per symbol
1541 dtrace_symbol_t* symbol = &module_symbols->dtmodsyms_symbols[i]; local
[all...]
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOPlatformExpert.h74 extern boolean_t PEWriteNVRAMProperty(const char *symbol, const void *value, const unsigned int len);
76 extern boolean_t PEReadNVRAMProperty(const char *symbol, void *value, unsigned int *len);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOPlatformExpert.cpp840 boolean_t PEReadNVRAMProperty(const char *symbol, void *value, argument
847 if (!symbol || !len)
856 obj = gIOOptionsEntry->getProperty(symbol);
877 boolean_t PEWriteNVRAMProperty(const char *symbol, const void *value, argument
884 if (!symbol || !value || !len)
890 sym = OSSymbol::withCStringNoCopy(symbol);
H A DIOService.cpp2605 OSSymbol * symbol; local
2729 symbol = OSDynamicCast( OSSymbol,
2731 if( !symbol)
2734 //IOLog("%s alloc (symbol %p props %p)\n", symbol->getCStringNoCopy(), symbol, props);
2737 inst = (IOService *) OSMetaClass::allocClassWithName( symbol);
2741 symbol->getCStringNoCopy());
2749 IOLog("%s::init fails\n", symbol->getCStringNoCopy());
2781 IOLog("%s::probe fails\n", symbol
[all...]
/darwin-on-arm/xnu/libkern/c++/
H A DOSUnserialize.cpp124 /* Put the tokens into the symbol table, so that GDB and other debuggers
457 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
464 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
497 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
529 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
551 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
637 symbol of state STATE-NUM. */
689 the previous symbol: RHS[0] (always defined). */
764 | Print this symbol on YYOUTPUT. |
797 | Print this symbol o
[all...]
H A DOSKext.cpp294 // symbol 'kmod' referenced in: model_dep.c, db_trace.c, symbols.c, db_low_trace.c,
1982 "Can't copy bundle identifier as symbol for kext %s.",
4668 /* Some pseudo-kexts have symbol tables without segments.
4768 /* fix up symbol offsets if they are after the dsymtab local relocs */
5179 /* We can free symbol tables for all embedded kexts because we don't
8863 const OSSymbol * symbol = NULL; local
8870 symbol = OSSymbol::withCStringNoCopy(cString);
8871 if (!symbol) {
8878 if (symbol->isEqualTo(thisObject)) {
8885 if (symbol) symbo
[all...]

Completed in 51 milliseconds