Searched defs:status (Results 801 - 825 of 1989) sorted by relevance

<<31323334353637383940>>

/illumos-gate/usr/src/uts/common/io/e1000api/
H A De1000_vf.c219 * the status register's data which is often stale and inaccurate.
224 s32 status; local
228 status = E1000_READ_REG(hw, E1000_STATUS);
229 if (status & E1000_STATUS_SPEED_1000) {
232 } else if (status & E1000_STATUS_SPEED_100) {
240 if (status & E1000_STATUS_FD) {
475 * @uni: boolean indicating unicast promisc status
476 * @multi: boolean indicating multicast promisc status
553 /* if link status is down no point in checking to see if pf is up */
564 /* message is not CTS and is NACK we have lost CTS status */
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dserial.c144 unsigned char status = 0;
152 status = inb (port + UART_SR);
153 if (status != UART_SR_TEST)
176 /* Set the line status. */
177 status = parity | word_len | stop_bit_len;
178 outb (port + UART_LCR, status);
143 unsigned char status = 0; local
/illumos-gate/usr/src/uts/common/io/i40e/core/
H A Di40e_adminq.c768 enum i40e_status_code status = I40E_SUCCESS; local
782 status = I40E_ERR_QUEUE_EMPTY;
789 status = I40E_ERR_QUEUE_EMPTY;
827 status = I40E_ERR_INVALID_SIZE;
835 status = I40E_ERR_PARAM;
850 status = I40E_ERR_ADMIN_QUEUE_FULL;
925 status = I40E_SUCCESS;
927 status = I40E_ERR_ADMIN_QUEUE_ERROR;
946 status = I40E_ERR_ADMIN_QUEUE_TIMEOUT;
952 return status;
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A Ddnssec.h63 typedef void DNSSECVerifierCallback (mDNS *const m, DNSSECVerifier *dv, DNSSECStatus status);
100 mDNSu8 ValidationRequired; // Copy of the question's ValidationRequired status
126 DNSSECStatus status; // status to deliver when done member in struct:InsecureContext_struct
137 extern RRVerifier* AllocateRRVerifier(const ResourceRecord *const rr, mStatus *status);
152 extern char *DNSSECStatusName(DNSSECStatus status);
/illumos-gate/usr/src/cmd/format/
H A Dmenu_fdisk.c379 * Before running the fdisk command, get file status of
483 int status; local
505 status = read(fd, mbr, cur_blksz);
507 if (status != cur_blksz) {
508 err_print("Bad read of fdisk partition. Status = %x\n", status);
554 status = bcmp(&ip, ipart,
613 status = bcmp(&ip, ipart, sizeof (struct ipart));
619 if (status) {
623 status = ioctl(fd, DKIOCGEXTVTOC, &exvtoc);
624 if (status
679 int status, i, fd; local
835 int status, i, fd; local
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Datexit.c417 quick_exit(int status) argument
436 _Exit(status);
/illumos-gate/usr/src/test/libc-tests/tests/
H A Dc11_threads.c187 int status; local
192 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success);
193 VERIFY3S(status, ==, 23);
197 VERIFY3S(thrd_join(thrd, &status), ==, thrd_success);
198 VERIFY3S(status, ==, 42);
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_gld.c159 enum ioc_reply status; local
177 status = ixgbe_loopback_ioctl(ixgbe, iocp, mp);
181 status = IOC_INVAL;
188 switch (status) {
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi_lun.c235 iscsi_status_t status = ISCSI_STATUS_SUCCESS; local
244 status = iscsi_lun_offline(ihp, ilp, B_TRUE);
247 if (ISCSI_SUCCESS(status)) {
284 return (status);
642 iscsi_status_t status = ISCSI_STATUS_SUCCESS; local
722 status = ISCSI_STATUS_BUSY;
743 status = ISCSI_STATUS_BUSY;
761 return (status);
768 return (status);
779 return (status);
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/libpython/
H A Dlibpython.c199 int status; local
207 status = wsp->walk_callback(addr, 0, wsp->walk_cbdata);
209 return (status);
/illumos-gate/usr/src/common/ficl/
H A Dfileaccess.c151 int status; local
161 ior = ficlFileStatus(filename, &status);
164 ficlStackPushInteger(vm->dataStack, status);
378 ficlDictionarySetPrimitive(dictionary, "file-status",
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dsd-card.c69 volatile unsigned int status; local
78 status = AT91C_BASE_MCI->MCI_SR;
81 while( !(status & waitfor) && (timeout>0) );
83 status = AT91C_BASE_MCI->MCI_SR;
86 if (MCI_Device.state == AT91C_MCI_TX_SINGLE_BLOCK && status & AT91C_MCI_TXBUFE) {
93 if (MCI_Device.state == AT91C_MCI_RX_SINGLE_BLOCK && status & AT91C_MCI_RXBUFF) {
99 //printf("WaitReady returning status %x\n", status);
101 return status;
121 int status; local
213 unsigned int status; local
272 int status; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Defi_console.c499 EFI_STATUS status; local
512 status = conin->ReadKeyStroke(conin, &key);
513 if (status == EFI_NOT_READY) {
515 status = conin->ReadKeyStroke(conin, &key);
H A Defipart.c85 EFI_STATUS status; local
93 status = BS->LocateHandle(ByProtocol, &blkio_guid, 0, &sz, 0);
94 if (status == EFI_BUFFER_TOO_SMALL) {
96 status = BS->LocateHandle(ByProtocol, &blkio_guid, 0, &sz,
98 if (EFI_ERROR(status))
101 if (EFI_ERROR(status))
102 return (efi_status_to_errno(status));
116 status = BS->HandleProtocol(hin[n], &devpath_guid,
118 if (EFI_ERROR(status)) {
130 status
181 EFI_STATUS status; local
212 EFI_STATUS status; local
265 EFI_STATUS status; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/amd64/
H A Dframebuffer.c120 EFI_STATUS status; local
123 status = uga->Blt(uga, &pix0, EfiUgaVideoToBltBuffer,
125 if (EFI_ERROR(status)) {
145 status = pciio->Mem.Read(pciio, EfiPciIoWidthUint32,
148 if (EFI_ERROR(status)) {
152 status = uga->Blt(uga, &pix1, EfiUgaBltBufferToVideo,
154 if (EFI_ERROR(status)) {
158 status = pciio->Mem.Read(pciio, EfiPciIoWidthUint32,
161 if (EFI_ERROR(status)) {
165 status
193 EFI_STATUS status; local
228 EFI_STATUS status; local
273 EFI_STATUS status; local
433 EFI_STATUS status; local
472 EFI_STATUS status; local
542 EFI_STATUS status; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dbootinfo.c243 EFI_STATUS status; local
291 status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
293 if (EFI_ERROR(status)) {
295 EFI_ERROR_CODE(status));
308 status = BS->GetMemoryMap(&sz, mm, &efi_mapkey, &mmsz, &mmver);
309 if (EFI_ERROR(status)) {
311 EFI_ERROR_CODE(status));
314 status = BS->ExitBootServices(IH, efi_mapkey);
315 if (EFI_ERROR(status) == 0) {
325 printf("ExitBootServices error %lu\n", EFI_ERROR_CODE(status));
[all...]
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_output.c488 int status; local
598 status = arg >> 16;
616 if (has_challenge && status == IEEE80211_STATUS_SUCCESS)
623 + (has_challenge && status == IEEE80211_STATUS_SUCCESS ?
636 ((uint16_t *)frm)[2] = LE_16(status); /* status */
638 if (has_challenge && status == IEEE80211_STATUS_SUCCESS) {
739 * [2] status
758 *(uint16_t *)frm = LE_16(arg); /* status */
/illumos-gate/usr/src/uts/intel/io/vmxnet3s/
H A Dvmxnet3_tx.c328 vmxnet3_txstatus status = VMXNET3_TX_OK; local
374 status = vmxnet3_tx_one(dp, txq, &ol, mp);
375 if (status == VMXNET3_TX_PULLUP) {
386 status = vmxnet3_tx_one(dp, txq, &ol,
394 if (status != VMXNET3_TX_OK && status != VMXNET3_TX_RINGFULL) {
399 } while (mps && status != VMXNET3_TX_RINGFULL);
401 if (status == VMXNET3_TX_RINGFULL) {
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_setup.c353 * lock status
495 md_error_t status = mdnullerror; local
496 md_error_t *ep = &status;
565 md_error_t status = mdnullerror; local
566 md_error_t *ep = &status;
/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dgetexecattr.c268 int status = NSS_STR_PARSE_SUCCESS; local
284 status = NSS_STR_PARSE_PARSE;
331 status = NSS_STR_PARSE_ERANGE;
336 status = NSS_STR_PARSE_PARSE;
351 return (status);
358 int status; local
372 status = _exec_ldap_exec2ent(entry, argp);
373 switch (status) {
/illumos-gate/usr/src/lib/print/libpapi-ipp/common/
H A Djob.c433 http_status_t status = HTTP_CONTINUE; local
447 while (status == HTTP_CONTINUE)
448 status = httpUpdate(svc->connection);
450 if (status != HTTP_OK)
451 return (http_to_papi_status(status));
/illumos-gate/usr/src/lib/print/mod_ipp/
H A Dmod_ipp.c209 papi_status_t status; local
241 status = ipp_read_message(read_data, r, &request, IPP_TYPE_REQUEST);
243 if (status != PAPI_OK)
245 "read failed: %s\n", papiStatusString(status));
321 status = ipp_process_request(request, &response, read_data, r);
322 if (status != PAPI_OK) {
325 "request failed: %s\n", papiStatusString(status));
329 fprintf(stderr, "processing result: %s\n", papiStatusString(status));
349 status = ipp_write_message(write_data, r, response);
350 if (status !
425 papi_status_t status; local
[all...]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsvcctl_svc.c339 param->status = ERROR_SUCCESS;
359 param->status = ERROR_INVALID_HANDLE;
367 param->status = ERROR_INVALID_HANDLE;
385 param->status = ERROR_INVALID_PARAMETER;
392 param->status = ERROR_SERVICE_DOES_NOT_EXIST;
404 param->status = ERROR_SUCCESS;
420 param->status = ERROR_INVALID_HANDLE;
424 param->status = ERROR_SUCCESS;
439 uint32_t status; local
443 status
564 DWORD status; local
672 uint32_t status; local
752 uint32_t status; local
1070 DWORD status; local
1127 uint32_t status; local
1200 DWORD status; local
1313 DWORD status; local
[all...]
/illumos-gate/usr/src/lib/fm/libdiskstatus/common/
H A Dds_scsi_uscsi.c147 { 0x00, 0x15, "no current audio status to return" },
344 { 0x2c, 0x07, "previous busy status" },
345 { 0x2c, 0x08, "previous task set full status" },
346 { 0x2c, 0x09, "previous reservation conflict status" },
471 { 0x5c, 0x00, "RPL status change" },
1045 int status; local
1104 status = ioctl(fd, USCSICMD, ucmd);
1105 if (status == 0 && ucmd->uscsi_status == 0)
1106 return (status);
1119 dprintf("Request sense status fo
1170 int status; local
1207 int status; local
1329 int status; local
1451 int status; local
1520 int status; local
1588 int status; local
[all...]
/illumos-gate/usr/src/lib/fm/libldom/sparc/
H A Dldmsvcs_utils.h62 CHANNEL_UNINITIALIZED, /* status of channel unknown */
115 uint32_t status; member in struct:__anon2493
140 uint32_t status; member in struct:__anon2495

Completed in 171 milliseconds

<<31323334353637383940>>