HomeSort by relevance Sort by last modified time
    Searched defs:symbol_table (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_elf_symbols.h 63 const ELF::Sym* symbol_table() const { return symbol_table_; } function in class:crazy::ElfSymbols
  /ndk/sources/android/crazy_linker/src/
crazy_linker_elf_symbols.h 63 const ELF::Sym* symbol_table() const { return symbol_table_; } function in class:crazy::ElfSymbols
  /external/bison/src/
symtab.c 581 static struct hash_table *symbol_table = NULL; variable in typeref:struct:hash_table
643 symbol_table = hash_initialize (HT_INITIAL_CAPACITY,
668 entry = hash_lookup (symbol_table, &probe);
675 if (!hash_insert (symbol_table, entry))
765 hash_free (symbol_table);
792 size_t count = hash_get_n_entries (symbol_table);
796 hash_get_entries (symbol_table, (void**)symbols_sorted, count);
876 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.cc 115 frames = symbol_table()->snd_pcm_avail_update()(handle_);
125 int ready = symbol_table()->snd_pcm_wait()(handle_, wait_timeout_ms_);
138 frames = symbol_table()->snd_pcm_avail_update()(handle_);
157 int err = symbol_table()->snd_pcm_delay()(handle_, &delay);
174 err = symbol_table()->snd_pcm_recover()(
188 symbol_table()->snd_pcm_stream()(handle_) == SND_PCM_STREAM_CAPTURE) {
191 err = symbol_table()->snd_pcm_start()(handle_);
203 err = symbol_table()->snd_pcm_drop()(handle_);
208 err = symbol_table()->snd_pcm_close()(handle_);
218 AlsaSymbolTable *symbol_table() { function in class:cricket::AlsaStream
    [all...]
pulseaudiosoundsystem.cc 156 symbol_table()->pa_stream_set_state_callback()(stream_, NULL, NULL);
157 if (symbol_table()->pa_stream_disconnect()(stream_) != 0) {
161 symbol_table()->pa_stream_unref()(stream_);
176 int re = symbol_table()->pa_stream_get_latency()(stream_, &latency,
199 PulseAudioSymbolTable *symbol_table() { function in class:cricket::PulseAudioStream
252 symbol_table()->pa_stream_set_overflow_callback()(stream, &OverflowCallback,
285 pa_operation *op = symbol_table()->pa_context_get_source_info_by_index()(
287 symbol_table()->pa_stream_get_device_index()(stream_.stream()),
342 uint32_t device_index = symbol_table()->pa_stream_get_device_index()(
345 pa_operation *op = symbol_table()->pa_context_get_source_info_by_index()
411 PulseAudioSymbolTable *symbol_table() { function in class:cricket::PulseAudioInputStream
802 PulseAudioSymbolTable *symbol_table() { function in class:cricket::PulseAudioOutputStream
    [all...]
  /art/runtime/
elf_file.cc 834 SymbolTable** symbol_table = GetSymbolTable(section_type); local
835 if (*symbol_table != nullptr || build_map) {
836 if (*symbol_table == nullptr) {
838 *symbol_table = new SymbolTable;
861 (*symbol_table)->insert(std::make_pair(name, symbol));
874 CHECK(*symbol_table != nullptr);
875 SymbolTable::const_iterator it = (*symbol_table)->find(symbol_name);
876 if (it == (*symbol_table)->end()) {
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 522 if ((symbol_table = symbols)){
523 symbol_table->put(varName, varRef);
532 if (symbol_table){
534 symbol_table->find(var_name, &var_ref);
543 SymbolTable * symbol_table; member in class:Variable
    [all...]

Completed in 378 milliseconds