Searched refs:status (Results 1 - 25 of 364) sorted by relevance

1234567891011>>

/barrelfish-master/lib/libc/uuid/
H A Duuid_create.c38 uuid_create(uuid_t *u, uint32_t *status) argument
41 if (status)
42 *status = uuid_s_ok;
H A Duuid_create_nil.c39 uuid_create_nil(uuid_t *u, uint32_t *status) argument
42 if (status)
43 *status = uuid_s_ok;
H A Duuid_hash.c38 uuid_hash(const uuid_t *u, uint32_t *status) argument
41 if (status)
42 *status = uuid_s_ok;
H A Duuid_from_string.c44 uuid_from_string(const char *s, uuid_t *u, uint32_t *status) argument
50 uuid_create_nil(u, status);
55 if (status != NULL)
56 *status = uuid_s_invalid_string_uuid;
86 if (status != NULL)
87 *status = uuid_s_bad_version;
89 if (status != NULL)
90 *status = uuid_s_ok;
H A Duuid_equal.c39 uuid_equal(const uuid_t *a, const uuid_t *b, uint32_t *status) argument
42 if (status != NULL)
43 *status = uuid_s_ok;
H A Duuid_is_nil.c38 uuid_is_nil(const uuid_t *u, uint32_t *status) argument
42 if (status)
43 *status = uuid_s_ok;
H A Duuid_to_string.c39 * NOTE: The references given above do not have a status code for when
40 * the string could not be allocated. The status code has been
44 uuid_to_string(const uuid_t *u, char **s, uint32_t *status) argument
48 if (status != NULL)
49 *status = uuid_s_ok;
65 if (*s == NULL && status != NULL)
66 *status = uuid_s_no_memory;
/barrelfish-master/lib/posixcompat/
H A D_exit.c13 __attribute__((noreturn)) void libc_exit(int status);
15 void _exit(int status) argument
17 libc_exit(status);
H A Dwait.c24 pid_t wait(int *status) argument
26 return waitpid(-1, status, 0);
29 pid_t wait3(int *status, int options, struct rusage *rusage) argument
32 return waitpid(-1, status, options);
35 pid_t waitpid(pid_t pid, int *status, int options) argument
82 *status = exitcode;
87 pid, *status, options, wpid);
/barrelfish-master/lib/libc/tests/iconv/
H A Diconvctl_test.c38 int actual, status; local
43 status = iconvctl(ic, ICONV_TRIVIALP, &actual);
44 ATF_REQUIRE(status == 0);
48 status = iconv_close(ic);
49 ATF_REQUIRE(status == 0);
/barrelfish-master/lib/libc/gen/
H A Dgetlogin.c57 getlogin_basic(int *status) argument
63 *status = errno;
68 *status = 0;
76 int status; local
79 result = getlogin_basic(&status);
89 int status; local
96 result = getlogin_basic(&status);
97 if (status == 0 && result != NULL) {
100 status = ERANGE;
105 return (status);
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mthca/
H A Dmthca_cmd.h249 u8 status, u64 out_param);
255 int mthca_SYS_EN(struct mthca_dev *dev, u8 *status);
256 int mthca_SYS_DIS(struct mthca_dev *dev, u8 *status);
257 int mthca_MAP_FA(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status);
258 int mthca_UNMAP_FA(struct mthca_dev *dev, u8 *status);
259 int mthca_RUN_FW(struct mthca_dev *dev, u8 *status);
260 int mthca_QUERY_FW(struct mthca_dev *dev, u8 *status);
261 int mthca_ENABLE_LAM(struct mthca_dev *dev, u8 *status);
262 int mthca_DISABLE_LAM(struct mthca_dev *dev, u8 *status);
263 int mthca_QUERY_DDR(struct mthca_dev *dev, u8 *status);
[all...]
H A Dmthca_mcg.c71 u8 status; local
80 err = mthca_MGID_HASH(dev, mailbox, hash, &status);
83 if (status) {
84 mthca_err(dev, "MGID_HASH returned status %02x\n", status);
96 err = mthca_READ_MGM(dev, *index, mgm_mailbox, &status);
99 if (status) {
100 mthca_err(dev, "READ_MGM returned status %02x\n", status);
137 u8 status; local
243 u8 status; local
[all...]
/barrelfish-master/lib/libc/stdlib/
H A Dexit.c59 exit(int status) argument
75 _exit(status);
/barrelfish-master/lib/libc/sys/
H A Dwait4.c44 wait4(pid_t pid, int *status, int options, struct rusage *ru) argument
48 __libc_interposing[INTERPOS_wait4])(pid, status, options, ru));
/barrelfish-master/lib/libc/tests/gen/
H A Dposix_spawn_test.c50 int error, status; local
65 waitres = waitpid(pid, &status, 0);
67 ATF_REQUIRE(WIFEXITED(status) && WEXITSTATUS(status) == 42);
74 int error, status; local
80 * process that exits with status 127.
86 waitres = waitpid(pid, &status, 0);
88 ATF_REQUIRE(WIFEXITED(status) && WEXITSTATUS(status) == 127);
H A Dpopen_test.c75 int i, status; local
86 status = pclose(fp);
87 ATF_CHECK_MSG(WIFEXITED(status) && WEXITSTATUS(status) == 7,
88 "bad exit status (no I/O)");
99 int i, status; local
112 status = pclose(fp);
113 ATF_CHECK_MSG(WIFEXITED(status) && WEXITSTATUS(status) == 9,
114 "bad exit status (inpu
143 int i, j, status; local
218 int i, ires, status; local
[all...]
/barrelfish-master/include/dma/ioat/
H A Dioat_dma_channel.h119 * \brief updates the channel status flag by reading the CHANSTS register
139 static inline bool ioat_dma_channel_is_active(uint64_t status) argument
141 uint32_t tr_st = ioat_dma_chan_sts_lo_dma_trans_state_extract(status);
153 static inline bool ioat_dma_channel_is_idle(uint64_t status) argument
155 uint32_t tr_st = ioat_dma_chan_sts_lo_dma_trans_state_extract(status);
168 static inline bool ioat_dma_channel_is_halted(uint64_t status) argument
170 uint32_t tr_st = ioat_dma_chan_sts_lo_dma_trans_state_extract(status);
182 static inline bool ioat_dma_channel_is_suspended(uint64_t status) argument
184 uint32_t tr_st = ioat_dma_chan_sts_lo_dma_trans_state_extract(status);
/barrelfish-master/usr/drivers/usb/usb_manager/controller/ohci/
H A Dusb_ohci.c55 char status[512]; local
56 ohci_control_pr(status, 512, hc->ohci_base);
57 puts(status);
287 ohci_interrupt_t status = 0; local
294 status = 0;
297 * was written. read status register
300 status = ohci_intstatus_rd(hc->ohci_base);
306 status = ohci_interrupt_wdh_insert(status, 1);
310 * the done head has not been written, so read the interrupt status
[all...]
/barrelfish-master/lib/skb/
H A Dskb_functions.c199 void skb_read_list_init_offset(struct list_parser_status *status, char *s, argument
202 status->s = s + offset;
203 status->conv_ptr = s;
204 status->len = strlen(s);
205 status->element_name[0] = 0;
206 status->expected_conversions = -1;
209 void skb_read_list_init(struct list_parser_status *status) argument
211 skb_read_list_init_offset(status, skb_get_output(), 0);
214 bool skb_read_list(struct list_parser_status *status, char *fmt, ...) argument
222 if (status
[all...]
/barrelfish-master/tools/armv8_bootimage/
H A Defi_loader.c120 EFI_STATUS status; local
125 status = ST->BootServices->GetMemoryMap(
132 if (status == EFI_BUFFER_TOO_SMALL) {
137 return status;
138 } else if (EFI_ERROR(status)) {
139 Print(L"Unable to get memory map: %x\n", status);
140 return status;
233 EFI_STATUS status = EFI_SUCCESS; local
236 status = update_memory_map();
237 if (EFI_ERROR(status)) {
418 EFI_STATUS status; local
454 EFI_STATUS status; local
509 EFI_STATUS status; local
532 EFI_STATUS status; local
583 EFI_STATUS status; local
624 EFI_STATUS status; local
[all...]
/barrelfish-master/usr/eclipseclp/VBinterface/
H A DEclipseClass.cls179 Dim status As Long
182 status = ec_set_option_int(EC_OPTION_IO, 2)
194 Dim status As EC_Status
213 Dim status As EC_Status
223 status = ec_resume_async()
226 status = ec_resume_status_long(iStream)
227 Loop While status = Running
228 Debug.Print "Status = " & status
231 Select Case status
245 "Unexpected return code from emulator (" & status
[all...]
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssl_task.c159 unsigned short status; member in struct:io_status
169 int status; local
171 status = SYS$QIOW ( 0, chan, IO$_READVBLK, &iosb, 0, 0,
173 if ( (status&1) == 1 ) status = iosb.status;
174 if ( (status&1) == 1 ) *length = iosb.count;
175 return status;
180 int status; local
182 status
197 int status, length; local
259 int status, length, link_state; local
[all...]
/barrelfish-master/include/dma/xeon_phi/
H A Dxeon_phi_dma_channel.h134 static inline bool xeon_phi_dma_channel_is_active(uint64_t status) argument
148 static inline bool xeon_phi_dma_channel_is_idle(uint64_t status) argument
163 static inline bool xeon_phi_dma_channel_is_halted(uint64_t status) argument
177 static inline bool xeon_phi_dma_channel_is_suspended(uint64_t status) argument
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbss_rtcp.c76 struct io_status { short status, count; long flags; }; member in struct:io_status
128 int status; local
130 status = sys$qiow ( 0, chan, IO$_READVBLK, &iosb, 0, 0,
132 if ( (status&1) == 1 ) status = iosb.status;
133 if ( (status&1) == 1 ) *length = iosb.count;
134 return status;
139 int status; local
141 status
176 int status, length; local
223 int status, i, segment, length; local
[all...]

Completed in 111 milliseconds

1234567891011>>