Searched refs:c_status (Results 1 – 5 of 5) sorted by relevance
146 int c_status; in sigchld_handler() local152 if (wait(&c_status) == -1) in sigchld_handler()155 child_status = c_status; in sigchld_handler()209 int c_status; in ATF_TC_BODY() local318 c_status = child_status; in ATF_TC_BODY()319 if (c_status < 0) in ATF_TC_BODY()320 atf_tc_fail("waitpid: %d", -c_status); in ATF_TC_BODY()321 else if (WIFEXITED(c_status) == 0) in ATF_TC_BODY()322 atf_tc_fail("child abnormal exit: %d", c_status); in ATF_TC_BODY()323 else if (WEXITSTATUS(c_status) != 0) in ATF_TC_BODY()[all …]
86 u_char c_status; /* State of connection on this file desc. */ member343 if (fdcon[s].c_status) in conalloc()347 fdcon[s].c_status = CS_CON; in conalloc()367 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED) in confree()372 if (fdcon[s].c_status == CS_KEYS) in confree()374 fdcon[s].c_status = CS_UNUSED; in confree()478 c->c_status = CS_SIZE; in congreet()488 if (c->c_status == CS_CON) { in conread()501 switch (c->c_status) { in conread()507 c->c_status = CS_KEYS; in conread()[all …]
515 int c, c_status = 0; in cdnc_uart_bus_receive() local525 c_status |= UART_STAT_PARERR; in cdnc_uart_bus_receive()527 c_status |= UART_STAT_FRAMERR; in cdnc_uart_bus_receive()535 if (c == 0 && (c_status & UART_STAT_FRAMERR) != 0 && in cdnc_uart_bus_receive()542 uart_rx_put(sc, c | c_status); in cdnc_uart_bus_receive()
107 BYTE c_status; /* cooking status */ member
586 …printf("\tc_status 0x%x %s\n", CCB.c_status, s_cstat(CCB.c_status)); /* BYTE c_status - cooking st… in ccb_stat()