OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gpr_subprocess
(Results
1 - 3
of
3
) sorted by null
/external/grpc-grpc/test/core/util/
subprocess.h
24
typedef struct
gpr_subprocess
gpr_subprocess
;
typedef in typeref:struct:gpr_subprocess
29
gpr_subprocess
* gpr_subprocess_create(int argc, const char** argv);
31
void gpr_subprocess_destroy(
gpr_subprocess
* p);
33
int gpr_subprocess_join(
gpr_subprocess
* p);
34
void gpr_subprocess_interrupt(
gpr_subprocess
* p);
subprocess_posix.cc
39
struct
gpr_subprocess
{
struct
46
gpr_subprocess
* gpr_subprocess_create(int argc, const char** argv) {
47
gpr_subprocess
* r;
65
r = static_cast<
gpr_subprocess
*>(gpr_zalloc(sizeof(
gpr_subprocess
)));
71
void gpr_subprocess_destroy(
gpr_subprocess
* p) {
79
int gpr_subprocess_join(
gpr_subprocess
* p) {
94
void gpr_subprocess_interrupt(
gpr_subprocess
* p) {
subprocess_windows.cc
33
struct
gpr_subprocess
{
struct
41
gpr_subprocess
* gpr_subprocess_create(int argc, const char** argv) {
42
gpr_subprocess
* r;
64
r = (
gpr_subprocess
*)gpr_malloc(sizeof(
gpr_subprocess
));
70
void gpr_subprocess_destroy(
gpr_subprocess
* p) {
86
int gpr_subprocess_join(
gpr_subprocess
* p) {
113
void gpr_subprocess_interrupt(
gpr_subprocess
* p) {
Completed in 1055 milliseconds