HomeSort by: relevance | last modified time | path
    Searched defs:pex (Results 1 - 24 of 24) sorted by relevancy

  /src/external/gpl3/binutils/dist/libiberty/
pexecute.c 35 static struct pex_obj *pex; variable in typeref:struct:pex_obj
48 if (pex != NULL)
54 pex = pex_init (PEX_USE_PIPES, pname, temp_base);
59 if (pex == NULL)
67 errmsg = pex_run (pex,
90 if (pex == NULL || pid < 0 || pid >= idx)
95 if (!pex_get_status (pex, 1, status))
103 if (!pex_get_status (pex, idx, vector))
118 pex_free (pex);
119 pex = NULL
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
pexecute.c 35 static struct pex_obj *pex; variable in typeref:struct:pex_obj
48 if (pex != NULL)
54 pex = pex_init (PEX_USE_PIPES, pname, temp_base);
59 if (pex == NULL)
67 errmsg = pex_run (pex,
90 if (pex == NULL || pid < 0 || pid >= idx)
95 if (!pex_get_status (pex, 1, status))
103 if (!pex_get_status (pex, idx, vector))
118 pex_free (pex);
119 pex = NULL
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
mapper-client.h 34 pex_obj *pex = nullptr; member in class:module_client
43 module_client (pex_obj *pex, int fd_from, int fd_to);
mapper-client.cc 47 : Client (fd_from, fd_to), pex (p)
88 auto *pex = pex_init (PEX_USE_PIPES, progname, NULL); local
89 FILE *to = pex_input_pipe (pex, false);
110 *errmsg = pex_run (pex, flags, argv[0], argv, NULL, NULL, &err);
118 FILE *from = pex_read_output (pex, false);
128 pex_free (pex);
132 return new module_client (pex, fd_from, fd_to);
352 if (mapper->pex)
359 pex_get_status (mapper->pex, 1, &status);
361 pex_free (mapper->pex);
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
pexecute.c 35 static struct pex_obj *pex; variable in typeref:struct:pex_obj
48 if (pex != NULL)
54 pex = pex_init (PEX_USE_PIPES, pname, temp_base);
59 if (pex == NULL)
67 errmsg = pex_run (pex,
90 if (pex == NULL || pid < 0 || pid >= idx)
95 if (!pex_get_status (pex, 1, status))
103 if (!pex_get_status (pex, idx, vector))
118 pex_free (pex);
119 pex = NULL
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
mapper-client.h 34 pex_obj *pex = nullptr; member in class:module_client
43 module_client (pex_obj *pex, int fd_from, int fd_to);
mapper-client.cc 45 : Client (fd_from, fd_to), pex (p)
86 auto *pex = pex_init (PEX_USE_PIPES, progname, NULL); local
87 FILE *to = pex_input_pipe (pex, false);
108 *errmsg = pex_run (pex, flags, argv[0], argv, NULL, NULL, &err);
116 FILE *from = pex_read_output (pex, false);
126 pex_free (pex);
130 return new module_client (pex, fd_from, fd_to);
342 if (mapper->pex)
349 pex_get_status (mapper->pex, 1, &status);
351 pex_free (mapper->pex);
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
pexecute.c 35 static struct pex_obj *pex; variable in typeref:struct:pex_obj
48 if (pex != NULL)
54 pex = pex_init (PEX_USE_PIPES, pname, temp_base);
59 if (pex == NULL)
67 errmsg = pex_run (pex,
90 if (pex == NULL || pid < 0 || pid >= idx)
95 if (!pex_get_status (pex, 1, status))
103 if (!pex_get_status (pex, idx, vector))
118 pex_free (pex);
119 pex = NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
pexecute.c 35 static struct pex_obj *pex; variable in typeref:struct:pex_obj
48 if (pex != NULL)
54 pex = pex_init (PEX_USE_PIPES, pname, temp_base);
59 if (pex == NULL)
67 errmsg = pex_run (pex,
90 if (pex == NULL || pid < 0 || pid >= idx)
95 if (!pex_get_status (pex, 1, status))
103 if (!pex_get_status (pex, idx, vector))
118 pex_free (pex);
119 pex = NULL
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
pexecute.c 35 static struct pex_obj *pex; variable in typeref:struct:pex_obj
48 if (pex != NULL)
54 pex = pex_init (PEX_USE_PIPES, pname, temp_base);
59 if (pex == NULL)
67 errmsg = pex_run (pex,
90 if (pex == NULL || pid < 0 || pid >= idx)
95 if (!pex_get_status (pex, 1, status))
103 if (!pex_get_status (pex, idx, vector))
118 pex_free (pex);
119 pex = NULL
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
collect-utils.cc 102 collect_wait (const char *prog, struct pex_obj *pex)
106 if (!pex_get_status (pex, 1, &status))
108 pex_free (pex);
133 do_wait (const char *prog, struct pex_obj *pex)
135 int ret = collect_wait (prog, pex);
149 struct pex_obj *pex;
225 pex = pex_init (0, "collect2", NULL);
226 if (pex == NULL)
229 errmsg = pex_run (pex, flags, argv[0], argv, outname,
244 return pex;
147 struct pex_obj *pex; local
249 struct pex_obj *pex; local
    [all...]
lto-wrapper.cc 2071 struct pex_obj *pex; local
2113 pex = collect_execute (new_argv[0], CONST_CAST (char **, new_argv),
2115 do_wait (new_argv[0], pex);
collect2.cc 611 struct pex_obj *pex;
643 pex = collect_execute (prog, lto_c_argv, NULL, NULL, PEX_SEARCH,
651 stream = pex_read_output (pex, 0);
682 do_wait (prog, pex);
683 pex = NULL;
754 struct pex_obj *pex;
756 pex = collect_execute (prog, ld_argv, NULL, NULL,
759 int ret = collect_wait (prog, pex);
2351 struct pex_obj *pex;
2397 pex = pex_init (PEX_USE_PIPES, "collect2", NULL)
605 struct pex_obj *pex; local
748 struct pex_obj *pex; local
2341 struct pex_obj *pex; local
2525 struct pex_obj *pex; local
3023 struct pex_obj *pex; local
    [all...]
gcc.cc 3271 struct pex_obj *pex;
3436 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3439 if (pex == NULL)
3448 errmsg = pex_run (pex,
3476 if (!pex_get_status (pex, n_commands, statuses))
3482 if (!pex_get_times (pex, n_commands, times))
3486 pex_free (pex);
7859 struct pex_obj *pex;
7867 pex = pex_init (PEX_USE_PIPES, new_argv[0], NULL);
7868 if (!pex)
3254 struct pex_obj *pex; local
7834 struct pex_obj *pex; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
collect-utils.cc 102 collect_wait (const char *prog, struct pex_obj *pex)
106 if (!pex_get_status (pex, 1, &status))
108 pex_free (pex);
133 do_wait (const char *prog, struct pex_obj *pex)
135 int ret = collect_wait (prog, pex);
149 struct pex_obj *pex;
225 pex = pex_init (0, "collect2", NULL);
226 if (pex == NULL)
229 errmsg = pex_run (pex, flags, argv[0], argv, outname,
244 return pex;
147 struct pex_obj *pex; local
249 struct pex_obj *pex; local
    [all...]
lto-wrapper.cc 2045 struct pex_obj *pex; local
2087 pex = collect_execute (new_argv[0], CONST_CAST (char **, new_argv),
2089 do_wait (new_argv[0], pex);
collect2.cc 611 struct pex_obj *pex;
643 pex = collect_execute (prog, lto_c_argv, NULL, NULL, PEX_SEARCH,
651 stream = pex_read_output (pex, 0);
682 do_wait (prog, pex);
683 pex = NULL;
754 struct pex_obj *pex;
756 pex = collect_execute (prog, ld_argv, NULL, NULL,
759 int ret = collect_wait (prog, pex);
2347 struct pex_obj *pex;
2393 pex = pex_init (PEX_USE_PIPES, "collect2", NULL)
605 struct pex_obj *pex; local
748 struct pex_obj *pex; local
2337 struct pex_obj *pex; local
2521 struct pex_obj *pex; local
3019 struct pex_obj *pex; local
    [all...]
gcc.cc 3266 struct pex_obj *pex;
3431 pex = pex_init (PEX_USE_PIPES | ((report_times || report_times_to_file)
3434 if (pex == NULL)
3443 errmsg = pex_run (pex,
3471 if (!pex_get_status (pex, n_commands, statuses))
3477 if (!pex_get_times (pex, n_commands, times))
3481 pex_free (pex);
7733 struct pex_obj *pex;
7741 pex = pex_init (PEX_USE_PIPES, new_argv[0], NULL);
7742 if (!pex)
3249 struct pex_obj *pex; local
7708 struct pex_obj *pex; local
    [all...]
  /src/sys/arch/hppa/hppa/
trap.c 804 uint32_t *pex, ex, inst; local
811 pex = (uint32_t *)&fpp[0];
812 pex++;
815 for (i = 1; i < 8 && !*pex; i++, pex++)
818 ex = *pex;
819 *pex = 0;
  /src/external/gpl3/gcc.old/dist/lto-plugin/
lto-plugin.c 633 struct pex_obj *pex; local
687 pex = pex_init (PEX_USE_PIPES, "lto-wrapper", NULL);
688 check (pex != NULL, LDPL_FATAL, "could not pex_init lto-wrapper");
690 errmsg = pex_run (pex, 0, new_argv[0], new_argv, NULL, NULL, &t);
694 wrapper_output = pex_read_output (pex, 0);
699 t = pex_get_status (pex, 1, &status);
704 pex_free (pex);
  /src/external/gpl3/gdb.old/dist/gdb/
ser-mingw.c 802 /* The pex obj for our (one-stage) pipeline. */
803 struct pex_obj *pex; member in struct:pipe_state
835 if (ps->pex)
837 pex_free (ps->pex);
879 ps->pex = pex_init (PEX_USE_PIPES, "target remote pipe", NULL);
880 if (! ps->pex)
882 ps->input = pex_input_pipe (ps->pex, 1);
889 = pex_run (ps->pex, PEX_SEARCH | PEX_BINARY_INPUT | PEX_BINARY_OUTPUT
909 ps->output = pex_read_output (ps->pex, 1);
914 pex_stderr = pex_read_err (ps->pex, 1)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
ser-mingw.c 802 /* The pex obj for our (one-stage) pipeline. */
803 struct pex_obj *pex; member in struct:pipe_state
835 if (ps->pex)
837 pex_free (ps->pex);
879 ps->pex = pex_init (PEX_USE_PIPES, "target remote pipe", NULL);
880 if (! ps->pex)
882 ps->input = pex_input_pipe (ps->pex, 1);
889 = pex_run (ps->pex, PEX_SEARCH | PEX_BINARY_INPUT | PEX_BINARY_OUTPUT
909 ps->output = pex_read_output (ps->pex, 1);
914 pex_stderr = pex_read_err (ps->pex, 1)
    [all...]
  /src/external/bsd/wpa/dist/src/common/
dpp_crypto.c 2402 struct wpabuf *pcx = NULL, *pex = NULL; local
2451 pex = crypto_ec_key_get_pubkey_point(auth->peer_protocol_key,
2456 pex = crypto_ec_key_get_pubkey_point(auth->own_protocol_key, 0);
2458 if (!pcx || !pex)
2462 addr[2] = wpabuf_head(pex);
2463 len[2] = wpabuf_len(pex) / 2;
2476 wpabuf_free(pex);
  /src/external/gpl3/gcc/dist/lto-plugin/
lto-plugin.c 676 struct pex_obj *pex; local
731 pex = pex_init (PEX_USE_PIPES, "lto-wrapper", NULL);
732 check (pex != NULL, LDPL_FATAL, "could not pex_init lto-wrapper");
734 errmsg = pex_run (pex, 0, new_argv[0], new_argv, NULL, NULL, &t);
738 wrapper_output = pex_read_output (pex, 0);
743 t = pex_get_status (pex, 1, &status);
748 pex_free (pex);

Completed in 51 milliseconds