Home
last modified time | relevance | path

Searched refs:g_count (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc/test/core/bad_client/tests/
Dwindow_overflow.cc56 size_t g_count = 0; variable
59 if (g_count + len > g_cap) { in addbuf()
60 g_cap = GPR_MAX(g_count + len, g_cap * 2); in addbuf()
63 memcpy(g_buffer + g_count, data, len); in addbuf()
64 g_count += len; in addbuf()
97 bca[1] = {rst_stream_client_validator, nullptr, g_buffer, g_count}; in main()
Dhead_of_line_blocking.cc99 size_t g_count = 0; variable
102 if (g_count + len > g_cap) { in addbuf()
103 g_cap = GPR_MAX(g_count + len, g_cap * 2); in addbuf()
106 memcpy(g_buffer + g_count, data, len); in addbuf()
107 g_count += len; in addbuf()
134 grpc_bad_client_arg bca = {nullptr, nullptr, g_buffer, g_count}; in main()
/external/llvm-project/lldb/test/API/python_api/watchpoint/watchlocation/
Dmain.cpp11 int g_count; variable
19 if (--g_count > 0) in barrier_wait()
76 g_count = 4; in main()
/external/llvm-project/lldb/test/API/commands/watchpoints/watchpoint_set_command/
Dmain.cpp8 int g_count; variable
16 if (--g_count > 0) in barrier_wait()
82 g_count = 4; in main()
/external/llvm-project/lldb/test/API/commands/watchpoints/hello_watchlocation/
Dmain.cpp11 int g_count; variable
19 if (--g_count > 0) in barrier_wait()
76 g_count = 4; in main()
/external/libcap/progs/
Dcapsh.c719 int g_count; in main() local
735 g_count = 0; in main()
737 ptr = NULL, g_count++) { in main()
738 if (max_groups <= g_count) { in main()
739 fprintf(stderr, "Too many groups specified (%d)\n", g_count); in main()
749 group_list[g_count] = g->gr_gid; in main()
751 group_list[g_count] = strtoul(ptr, NULL, 0); in main()
755 if (setgroups(g_count, group_list) != 0) { in main()