Searched refs:symbol (Results 51 - 75 of 869) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dsymbol-version.py83 for symbol in symbols:
84 if symbol[0] == "global":
85 print "%s" % symbol[1]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-local-and-global/
H A Dmain.c33 static void* openWithModeGetSymbol(const char* path, int mode, const char* symbol) argument
45 void* sym = dlsym(handle, symbol);
47 FAIL("dlsym(handle, \"%s\") failed", symbol);
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/
H A DtclLoadShl.c56 dlsym(handle, symbol)
58 const char *symbol;
61 if (shl_findsym((shl_t *)&handle, symbol,
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/compat/
H A DtclLoadShl.c56 VOID *dlsym(handle, symbol)
58 CONST char *symbol;
61 if (shl_findsym((shl_t *)&handle, symbol,
H A Ddlfcn.h51 VOID *dlsym _ANSI_ARGS_((void *handle, const char *symbol));
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf32-dlx.c54 asymbol *symbol,
67 return bfd_elf_generic_reloc (abfd, reloc_entry, symbol, data,
70 /* If we're relocating, and this an external symbol, we don't want
73 && (symbol->flags & BSF_SECTION_SYM) == 0
82 if (bfd_is_und_section (symbol->section)
86 relocation = (bfd_is_com_section (symbol->section)) ? 0 : symbol->value;
87 relocation += symbol->section->output_section->vma;
88 relocation += symbol->section->output_offset;
102 output, and the reloc is against an external symbol, an
52 _bfd_dlx_elf_hi16_reloc(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message) argument
112 elf32_dlx_relocate16(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
175 elf32_dlx_relocate26(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
[all...]
H A Delf32-or32.c54 asymbol *symbol,
68 insn += symbol->section->output_section->vma;
69 insn += symbol->section->output_offset;
70 insn += symbol->value;
82 asymbol *symbol,
96 insn += symbol->section->output_section->vma;
97 insn += symbol->section->output_offset;
98 insn += symbol->value;
110 asymbol *symbol,
124 insn += symbol
52 or32_elf_32_reloc(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
80 or32_elf_16_reloc(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
108 or32_elf_8_reloc(bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
156 or32_elf_consth_reloc(bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
206 or32_elf_const_reloc(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void * data, asection *input_section, bfd *output_bfd, char **error_message) argument
[all...]
H A Delf32-i960.c34 output, and the reloc is against an external symbol, and nothing
36 be against the same symbol. In such a case, we don't want to
41 relocatable output against an external symbol. */
46 asymbol *symbol,
59 reloc_entry->addend -= symbol->value;
63 && (symbol->flags & BSF_SECTION_SYM) != 0)
64 reloc_entry->addend -= symbol->section->output_section->vma;
70 && (symbol->flags & BSF_SECTION_SYM) == 0
44 elf32_i960_relocate(bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry, asymbol *symbol, PTR data ATTRIBUTE_UNUSED, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-RTLD_FIRST/
H A Dmain.c57 static void dlsym_should_fail(info hp, const char* symbol) argument
59 void* sym = dlsym(hp.handle, symbol);
61 FAIL("dlopen-RTLD_FIRST: dlsym(handle-%s, \"%s\") should have failed", hp.path, symbol);
66 static void dlsym_should_succeed(info hp, const char* symbol) argument
68 void* sym = dlsym(hp.handle, symbol);
70 FAIL("dlopen-RTLD_FIRST: dlsym(handle-%s, \"%s\") failed", hp.path, symbol);
/macosx-10.9.5/tcl-102/tcl84/tcl/win/
H A DtclWinLoad.c137 * Looks up a symbol, by name, through a handle associated with
141 * Returns a pointer to the function associated with 'symbol' if
148 TclpFindSymbol(interp, loadHandle, symbol)
151 CONST char *symbol;
157 * For each symbol, check for both Symbol and _Symbol, since Borland
161 proc = (Tcl_PackageInitProc *) GetProcAddress(handle, symbol);
166 symbol = Tcl_DStringAppend(&ds, symbol, -1);
167 proc = (Tcl_PackageInitProc *) GetProcAddress(handle, symbol);
/macosx-10.9.5/libxml2-26/libxml2/doc/
H A Dindex.py65 symbol varchar(255) BINARY NOT NULL,
68 KEY symbol (symbol),
69 UNIQUE KEY ID (name, symbol))""",
201 def updateWord(name, symbol, relevance):
210 if symbol == None:
216 """INSERT INTO words (name, symbol, relevance) VALUES ('%s','%s', %d)""" %
217 (name, symbol, relevance))
221 """UPDATE words SET relevance = %d where name = '%s' and symbol = '%s'""" %
222 (relevance, name, symbol))
[all...]
/macosx-10.9.5/libxslt-13/libxslt/doc/
H A Dindex.py65 symbol varchar(255) BINARY NOT NULL,
68 KEY symbol (symbol),
69 UNIQUE KEY ID (name, symbol))""",
192 def updateWord(name, symbol, relevance):
201 if symbol == None:
207 """INSERT INTO XSLTwords (name, symbol, relevance) VALUES ('%s','%s', %d)""" %
208 (name, symbol, relevance))
212 """UPDATE XSLTwords SET relevance = %d where name = '%s' and symbol = '%s'""" %
213 (relevance, name, symbol))
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcus-theme.el155 (defun custom-theme-add-variable (symbol)
157 (cond ((assq symbol custom-theme-variables)
158 (message "%s is already in the theme" (symbol-name symbol)))
159 ((not (boundp symbol))
160 (message "%s is not defined as a variable" (symbol-name symbol)))
161 ((eq symbol 'custom-enabled-themes)
168 :tag (custom-unlispify-tag-name symbol)
172 :value symbol)))
[all...]
/macosx-10.9.5/xnu-2422.115.4/libsyscall/xcodescripts/
H A Dcreate-syscalls.pl30 # syscall.master file to get the symbol names and number of arguments,
297 # last thing to do, if we aliased over a first class symbol, we need
316 my ($f, $symbol) = @_;
321 push(@conditions, "defined(__${arch}__)") unless grep { $_ eq $arch } @{$$symbol{except}};
327 print $f "#define __SYSCALL_32BIT_ARG_BYTES $$symbol{bytes}\n";
330 printf $f "#ifndef SYS_%s\n", $$symbol{syscall};
331 printf $f "#error \"SYS_%s not defined. The header files libsyscall is building against do not match syscalls.master.\"\n", $$symbol{syscall};
333 my $nc = ($is_cancel{$$symbol{syscall}} ? "cerror" : "cerror_nocancel");
335 printf $f "__SYSCALL2(%s, %s, %d, %s)\n", $$symbol{asm_sym}, $$symbol{syscal
[all...]
/macosx-10.9.5/groff-38/groff/src/roff/troff/
H A Ddictionary.cpp49 void *dictionary::lookup(symbol s, void *v)
87 symbol s(p, MUST_ALREADY_EXIST);
96 void *dictionary::remove(symbol s)
128 int dictionary_iterator::get(symbol *sp, void **vp)
168 object *object_dictionary::lookup(symbol nm)
173 void object_dictionary::define(symbol nm, object *obj)
181 void object_dictionary::rename(symbol oldnm, symbol newnm)
191 void object_dictionary::remove(symbol nm)
200 int object_dictionary::alias(symbol newn
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dbacktrace.h23 * dependent way when available. It also manages an internal symbol table
54 const char *symbol; member in struct:isc_backtrace_symmap
91 * Returns the content of the internal symbol table of the given index.
92 * On success, *addrsp and *symbolp point to the address and the symbol of
94 * range of the symbol table, ISC_R_RANGE will be returned.
112 * Searches the internal symbol table for the symbol that most matches the
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/dlcompat-20010505/
H A Ddlfcn.h39 const char *symbol);
/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Ddlfcn.h57 VOID *dlsym _ANSI_ARGS_((void *handle, const char *symbol));
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclLoadNone.c62 * Looks up a symbol, by name, through a handle associated with a
68 * Returns a pointer to the function associated with 'symbol' if it is
79 CONST char *symbol)
74 TclpFindSymbol( Tcl_Interp *interp, Tcl_LoadHandle loadHandle, CONST char *symbol) argument
/macosx-10.9.5/tcl-102/tcl/tcl/unix/
H A DtclLoadNext.c111 * Looks up a symbol, by name, through a handle associated with a
115 * Returns a pointer to the function associated with 'symbol' if it is
126 CONST char *symbol)
129 if (symbol) {
130 char sym[strlen(symbol) + 2];
134 strcat(sym, symbol);
121 TclpFindSymbol( Tcl_Interp *interp, Tcl_LoadHandle loadHandle, CONST char *symbol) argument
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Ddlfcn.h57 VOID *dlsym _ANSI_ARGS_((void *handle, const char *symbol));
/macosx-10.9.5/tcl-102/tcl84/tcl/unix/
H A DtclLoadShl.c112 * Looks up a symbol, by name, through a handle associated with
116 * Returns a pointer to the function associated with 'symbol' if
123 TclpFindSymbol(interp, loadHandle, symbol)
126 CONST char *symbol;
137 if (shl_findsym(&handle, symbol, (short) TYPE_PROCEDURE, (void *) &proc)
141 Tcl_DStringAppend(&newName, symbol, -1);
H A DtclLoadNext.c108 * Looks up a symbol, by name, through a handle associated with
112 * Returns a pointer to the function associated with 'symbol' if
119 TclpFindSymbol(interp, loadHandle, symbol)
122 CONST char *symbol;
125 if(symbol) {
126 char sym[strlen(symbol)+2];
127 sym[0]='_'; sym[1]=0; strcat(sym,symbol);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Object/
H A DArchive.h102 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
104 symbol_iterator(const Symbol &s) : symbol(s) {}
106 return &symbol;
110 return symbol == other.symbol;
118 symbol = symbol.getNext();
/macosx-10.9.5/tcl-102/tcl/tcl/win/
H A DtclWinLoad.c147 * Looks up a symbol, by name, through a handle associated with a
151 * Returns a pointer to the function associated with 'symbol' if it is
162 CONST char *symbol)
168 * For each symbol, check for both Symbol and _Symbol, since Borland
172 proc = (Tcl_PackageInitProc *) GetProcAddress(handle, symbol);
178 symbol = Tcl_DStringAppend(&ds, symbol, -1);
179 proc = (Tcl_PackageInitProc *) GetProcAddress(handle, symbol);
157 TclpFindSymbol( Tcl_Interp *interp, Tcl_LoadHandle loadHandle, CONST char *symbol) argument

Completed in 333 milliseconds

1234567891011>>