Lines Matching defs:r_status
103 * r_status - [RO, *RW] - (int *)
124 * Look at r_status for results of Unix command
126 * r_status and r_results have no meaning;
127 * r_status will be -1
132 * NOTE: If 0 is returned, 'r_status' must be queried to
140 z_ExecCmdArray(int *r_status, char **r_results,
155 assert(r_status != NULL);
166 *r_status = -1;
256 *r_status = -1;
344 *r_status = WIFEXITED(status) ? WEXITSTATUS(status) : -1;
622 * r_status - [RO, *RW] - (int *)
653 * Look at r_status for results of Unix command
655 * r_status and r_results have no meaning;
656 * r_status will be -1
672 _z_zone_exec(int *r_status, char **r_results, char *a_inputFile,
720 return (z_ExecCmdArray(r_status, r_results, a_inputFile,
730 *r_status = -1; /* -1 : failure to exec process */
992 *r_status = WEXITSTATUS(status);
993 if ((_z_global_data._z_SigReceived != 0) && (*r_status == 0)) {
994 *r_status = 1;
997 *r_status = -1; /* -1 : failure to exec process */