Searched defs:status (Results 1 - 6 of 6) sorted by relevance

/pkg/src/zoneproxy/zoneproxy-client/
H A Dzoneproxy-client.c282 daemonize_ready(char status) argument
287 (void) write(g_pipe_fd, &status, 1);
295 int status; local
317 /* forward ready code via exit status */
320 status = -1;
321 (void) wait4(pid, &status, 0, NULL);
323 if (WIFEXITED(status)) {
325 exit(WEXITSTATUS(status));
/pkg/src/modules/client/
H A Drad_pkg.py117 ret_json = {"status": UNANTICIPATED, "errors": [{"reason":
236 status = property(get_any("_status"), set_any("_status")) variable in class:PkgSource
394 elif "status" in out_json:
397 return {"status": ERROR, "errors": [{"reason":
401 return {"status": ERROR, "errors": [{"reason": str(ex)}
421 ret_json = {"status": ERROR, "errors":
442 return {"status": UNANTICIPATED, "errors": [{"reason":
450 out_json = {"status": ERROR, "errors": [{"reason":
453 if out_json["status"] not in [SUCCEED, NO_OP,
455 err_code = out_json["status"]
[all...]
/pkg/src/modules/
H A Delfextract.c686 struct stat status; local
702 if ((fstat(fd, &status) == -1) ||
703 ((hdata.base = mmap(NULL, status.st_size, PROT_READ, MAP_PRIVATE,
846 munmap(hdata.base, status.st_size);
/pkg/src/modules/solver/
H A Dsolver.c1167 lbool status = l_Undef; local
1196 while (status == l_Undef){
1212 status = solver_search(s,(int)nof_conflicts, (int)nof_learnts);
1220 return status != l_False;
/pkg/src/zoneproxy/zoneproxyd/
H A Dzoneproxyd.c1593 daemonize_ready(char status) argument
1598 (void) write(g_pipe_fd, &status, 1);
1609 int status; local
1640 /* forward ready code via exit status */
1643 status = -1;
1644 (void) wait4(pid, &status, 0, NULL);
1646 if (WIFEXITED(status)) {
1648 exit(WEXITSTATUS(status));
/pkg/src/
H A Dclient.py528 errors = _generate_error_messages(out_json["status"], errors,
551 status = ""
559 status += st
577 msg(fmt_str.format(pfmri, status))
591 msg(fmt_str.format(pf, sver, status))
594 _generate_error_messages(out_json["status"], errors)
596 return out_json["status"]
696 status = [] variable
702 status.append((s1, s2.format(v)))
722 status
[all...]

Completed in 61 milliseconds