Home
last modified time | relevance | path

Searched refs:g_channel (Results 1 – 11 of 11) sorted by relevance

/external/grpc-grpc/test/core/end2end/fuzzers/
Dapi_fuzzer.cc62 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/
DLogChannelDWARF.h24 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()
DLogChannelDWARF.cpp27 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/
DProcessGDBRemoteLog.h33 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()
DProcessGDBRemoteLog.cpp36 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/
DProcessWindowsLog.h25 static Log::Channel g_channel; variable
31 static Log *GetLogIfAny(uint32_t mask) { return g_channel.GetLogIfAny(mask); } in GetLogIfAny()
DProcessWindowsLog.cpp24 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/
DProcessKDPLog.cpp32 Log::Channel ProcessKDPLog::g_channel(g_categories, KDP_LOG_DEFAULT);
34 void ProcessKDPLog::Initialize() { Log::Register("kdp-remote", g_channel); } in Initialize()
DProcessKDPLog.h31 static Log::Channel g_channel; variable
37 return g_channel.GetLogIfAll(mask); in GetLogIfAllCategoriesSet()
/external/llvm-project/lldb/source/Plugins/Process/POSIX/
DProcessPOSIXLog.cpp25 Log::Channel ProcessPOSIXLog::g_channel(g_categories, POSIX_LOG_DEFAULT);
29 llvm::call_once(g_once_flag, []() { Log::Register("posix", g_channel); }); in Initialize()
DProcessPOSIXLog.h28 static Log::Channel g_channel; variable
34 return g_channel.GetLogIfAll(mask); in GetLogIfAllCategoriesSet()