Home
last modified time | relevance | path

Searched refs:symbol_table_ (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/sound/
Dpulseaudiosoundsystem.cc187 return &pulse()->symbol_table_; in symbol_table()
975 if (!symbol_table_.Load()) { in Init()
983 mainloop_ = symbol_table_.pa_threaded_mainloop_new()(); in Init()
989 if (symbol_table_.pa_threaded_mainloop_start()(mainloop_) != 0) { in Init()
1006 symbol_table_.pa_threaded_mainloop_stop()(mainloop_); in Init()
1008 symbol_table_.pa_threaded_mainloop_free()(mainloop_); in Init()
1020 symbol_table_.pa_context_disconnect()(context_); in Terminate()
1021 symbol_table_.pa_context_unref()(context_); in Terminate()
1024 symbol_table_.pa_threaded_mainloop_stop()(mainloop_); in Terminate()
1025 symbol_table_.pa_threaded_mainloop_free()(mainloop_); in Terminate()
[all …]
Dalsasoundsystem.cc206 return &alsa_->symbol_table_; in symbol_table()
454 if (!symbol_table_.Load()) { in Init()
542 err = symbol_table_.snd_device_name_hint()(-1, // All cards in EnumerateDevices()
551 char *actual_type = symbol_table_.snd_device_name_get_hint()(*list, "IOID"); in EnumerateDevices()
561 char *name = symbol_table_.snd_device_name_get_hint()(*list, "NAME"); in EnumerateDevices()
574 char *desc = symbol_table_.snd_device_name_get_hint()(*list, "DESC"); in EnumerateDevices()
593 err = symbol_table_.snd_device_name_free_hint()(hints); in EnumerateDevices()
636 err = symbol_table_.snd_pcm_open()( in OpenDevice()
666 err = symbol_table_.snd_pcm_set_params()( in OpenDevice()
680 err = symbol_table_.snd_pcm_prepare()(handle); in OpenDevice()
[all …]
Dalsasoundsystem.h96 AlsaSymbolTable symbol_table_; variable
Dpulseaudiosoundsystem.h168 PulseAudioSymbolTable symbol_table_; variable
/external/v8/tools/gcmole/
Dgcmole.cc343 SymbolTable::iterator code = symbol_table_.find(name); in IsAlive()
344 if (code == symbol_table_.end()) return false; in IsAlive()
361 SymbolTable::iterator code = symbol_table_.find(name); in SymbolToCode()
363 if (code == symbol_table_.end()) { in SymbolToCode()
364 int new_code = symbol_table_.size(); in SymbolToCode()
365 symbol_table_.insert(std::make_pair(name, new_code)); in SymbolToCode()
380 symbol_table_.clear(); in ClearSymbolTable()
386 SymbolTable::iterator end = symbol_table_.end(); in Print()
387 for (SymbolTable::iterator i = symbol_table_.begin(); in Print()
415 static SymbolTable symbol_table_; member in __anond932a49f0111::Environment
[all …]