Searched refs:g_channel (Results 1 – 11 of 11) sorted by relevance
/external/grpc-grpc/test/core/end2end/fuzzers/ |
D | api_fuzzer.cc | 62 static grpc_channel* g_channel; variable 709 GPR_ASSERT(g_channel == nullptr); in LLVMFuzzerTestOneInput() 722 while (!is_eof(&inp) || g_channel != nullptr || g_server != nullptr || in LLVMFuzzerTestOneInput() 726 if (g_channel != nullptr) { in LLVMFuzzerTestOneInput() 727 grpc_channel_destroy(g_channel); in LLVMFuzzerTestOneInput() 728 g_channel = nullptr; in LLVMFuzzerTestOneInput() 790 if (g_channel == nullptr) { in LLVMFuzzerTestOneInput() 795 g_channel = grpc_insecure_channel_create(target_uri, args, nullptr); in LLVMFuzzerTestOneInput() 796 GPR_ASSERT(g_channel != nullptr); in LLVMFuzzerTestOneInput() 810 if (g_channel != nullptr) { in LLVMFuzzerTestOneInput() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | LogChannelDWARF.h | 24 static Log::Channel g_channel; variable 30 static Log *GetLogIfAll(uint32_t mask) { return g_channel.GetLogIfAll(mask); } in GetLogIfAll() 31 static Log *GetLogIfAny(uint32_t mask) { return g_channel.GetLogIfAny(mask); } in GetLogIfAny()
|
D | LogChannelDWARF.cpp | 27 Log::Channel LogChannelDWARF::g_channel(g_categories, DWARF_LOG_DEFAULT); 30 Log::Register("dwarf", g_channel); in Initialize()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemoteLog.h | 33 static Log::Channel g_channel; variable 38 static Log *GetLogIfAllCategoriesSet(uint32_t mask) { return g_channel.GetLogIfAll(mask); } in GetLogIfAllCategoriesSet() 39 static Log *GetLogIfAnyCategoryIsSet(uint32_t mask) { return g_channel.GetLogIfAny(mask); } in GetLogIfAnyCategoryIsSet()
|
D | ProcessGDBRemoteLog.cpp | 36 Log::Channel ProcessGDBRemoteLog::g_channel(g_categories, GDBR_LOG_DEFAULT); 41 Log::Register("gdb-remote", g_channel); in Initialize()
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ProcessWindowsLog.h | 25 static Log::Channel g_channel; variable 31 static Log *GetLogIfAny(uint32_t mask) { return g_channel.GetLogIfAny(mask); } in GetLogIfAny()
|
D | ProcessWindowsLog.cpp | 24 Log::Channel ProcessWindowsLog::g_channel(g_categories, WINDOWS_LOG_PROCESS); 28 llvm::call_once(g_once_flag, []() { Log::Register("windows", g_channel); }); in Initialize()
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ProcessKDPLog.cpp | 32 Log::Channel ProcessKDPLog::g_channel(g_categories, KDP_LOG_DEFAULT); 34 void ProcessKDPLog::Initialize() { Log::Register("kdp-remote", g_channel); } in Initialize()
|
D | ProcessKDPLog.h | 31 static Log::Channel g_channel; variable 37 return g_channel.GetLogIfAll(mask); in GetLogIfAllCategoriesSet()
|
/external/llvm-project/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIXLog.h | 28 static Log::Channel g_channel; variable 34 return g_channel.GetLogIfAll(mask); in GetLogIfAllCategoriesSet()
|
D | ProcessPOSIXLog.cpp | 25 Log::Channel ProcessPOSIXLog::g_channel(g_categories, POSIX_LOG_DEFAULT); 29 llvm::call_once(g_once_flag, []() { Log::Register("posix", g_channel); }); in Initialize()
|