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

12

/darwin-on-arm/xnu/libkern/kxld/
H A Dkxld_demangle.c54 int status;
65 demangled = __cxa_demangle(str+1, *buffer, length, &status);
66 if (!demangled || status) goto finish;
/darwin-on-arm/xnu/tools/tests/libMicro/apple/
H A Dposix_spawn.c85 int status; local
92 if (waitpid(pid, &status, 0) < 0)
97 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
/darwin-on-arm/xnu/tools/tests/libMicro/
H A Dexec.c80 int status; local
87 if (waitpid(c, &status, 0) < 0)
90 if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
/darwin-on-arm/xnu/osfmk/i386/
H A Dmachine_check.c319 ia32_mci_status_t status; local
324 status = bank->mca_mci_status;
325 mc8 = status.bits_mc8;
330 i, IA32_MCi_STATUS(i), status.u64, IF(!status.bits.val, "in"));
331 if (!status.bits.val)
354 IF(status.bits.pcc, " Processor context corrupt\n"),
355 IF(status.bits.addrv, " ADDR register valid\n"),
356 IF(status.bits.miscv, " MISC register valid\n"),
357 IF(status
393 ia32_mci_status_t status; local
537 ia32_mcg_status_t status; local
[all...]
H A Dfpu.c170 unsigned short status; local
171 __asm__ volatile("fnstsw %0" : "=ma" (status));
172 return(status);
224 unsigned short status; local
230 * the control and status registers.
235 status = fnstsw();
238 assert(((status & 0xff) == 0) && ((control & 0x103f) == 0x3f));
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOInterleavedMemoryDescriptor.cpp187 IOReturn status = kIOReturnSuccess; local
197 status = _descriptors[index]->prepare(forDirection);
198 if ( status != kIOReturnSuccess ) break;
201 if ( status != kIOReturnSuccess )
210 if ( status == kIOReturnSuccess ) _descriptorPrepared = true;
212 return status;
225 IOReturn status; local
235 status = _descriptors[index]->complete(forDirection);
236 if ( status != kIOReturnSuccess ) statusFinal = status;
[all...]
H A DIOMultiMemoryDescriptor.cpp161 IOReturn status = kIOReturnInternalError; local
171 status = _descriptors[index]->prepare(forDirection);
172 if ( status != kIOReturnSuccess ) break;
175 if ( status != kIOReturnSuccess )
184 return status;
197 IOReturn status; local
207 status = _descriptors[index]->complete(forDirection);
208 if ( status != kIOReturnSuccess ) statusFinal = status;
209 assert(status
[all...]
H A DIODMAController.cpp94 void IODMAController::notifyDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount) argument
96 dmaES->notifyDMACommand(dmaCommand, status, actualByteCount);
H A DIODMAEventSource.cpp168 void IODMAEventSource::notifyDMACommand(IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount) argument
170 dmaCommand->reserved->fStatus = status;
173 if (dmaNotificationAction != 0) (*dmaNotificationAction)(owner, this, dmaCommand, status, actualByteCount);
H A DIOPlatformExpert.cpp1406 IOReturn status; local
1408 status = super::setProperties( properties );
1409 if ( status != kIOReturnUnsupported ) return status;
1411 status = IOUserClient::clientHasPrivilege( current_task( ), kIOClientPrivilegeAdministrator );
1412 if ( status != kIOReturnSuccess ) return status;
1430 status = uuid_parse( string->getCStringNoCopy( ), uuid );
1431 if ( status != 0 ) return kIOReturnBadArgument;
/darwin-on-arm/xnu/iokit/IOKit/
H A DIODMAEventSource.h46 typedef void (*Action)(OSObject *owner, IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount);
51 virtual void notifyDMACommand(IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount);
H A DIODMAController.h55 virtual void notifyDMACommand(IODMAEventSource *dmaES, IODMACommand *dmaCommand, IOReturn status, IOByteCount actualByteCount);
H A DIOPolledInterface.h52 IOReturn status,
/darwin-on-arm/xnu/libkern/zlib/
H A Ddeflate.c328 s->status = FINISH_STATE;
356 (strm->state->wrap == 1 && strm->state->status != INIT_STATE))
407 s->status = s->wrap ? INIT_STATE : BUSY_STATE;
596 (s->status == FINISH_STATE && flush != Z_FINISH)) {
606 if (s->status == INIT_STATE) {
623 s->status = BUSY_STATE;
648 s->status = EXTRA_STATE;
669 s->status = BUSY_STATE;
681 if (s->status == EXTRA_STATE) {
703 s->status
891 int status; local
[all...]
/darwin-on-arm/xnu/bsd/netat/
H A Dddp_r_zip.c120 u_short znumber, len, packet_length = 0, size, status; local
268 if ((status =
272 ("zip_s_gni_r: ddp_router_output returns =%d\n", status));
273 return; /* was return(status); */
333 short i, j, reply_length, Index, zone_count, status; local
380 if ((status =
385 status));
386 return; /* was return (status); */
421 if ((status =
425 ("zip_s_ext_reply: ddp_router_output returns =%d\n", status));
446 short i, reply_length, Index, status; local
1350 int status; local
1583 register int size, Index, status; local
1679 register int size, status; local
1805 int size, status; local
[all...]
H A Dddp_r_rtmp.c899 register int size, status; local
966 if ((status = ddp_router_output(m, ifID, AT_ADDR, NET_VALUE(orig_ddp->src_net),
969 ("rtmp_r_find_bridge: ddp_router_output failed status=%d\n", status));
970 return (status);
1000 short size,status ; local
1059 if ((status = ddp_router_output(m, ifID, AT_ADDR,
1062 ("rtmp_send_table: ddp_router_output failed status=%d\n",
1063 status));
1064 return (status);
[all...]
/darwin-on-arm/xnu/iokit/Drivers/platform/drvAppleMacIO/
H A DAppleMacIO.cpp174 UInt32 status; local
247 status = IOGetDBDMAChannelStatus( ioBaseDMA );
249 if ( ((status & kdbdmaActive) == 0)
250 && ((status & kdbdmaDead) == 0)
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_exit.c243 * status and rusage for wait(). Check for child processes and orphan them.
284 * The BSM token contains two components: an exit status as passed
286 * was. The exit status is WEXITSTATUS(rv), but it's not clear
732 * Save exit status and final rusage info, adding in child rusage
920 * Description: Given a process from which all status information needed
1136 int status, error; local
1177 if (uap->status) {
1178 /* Legacy apps expect only 8 bits of status */
1179 status = 0xffff & p->p_xstat; /* convert to int */
1180 error = copyout((caddr_t)&status,
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_vnops.c474 int error = 0, lockerror = ENOENT, status, slot; local
489 error = nfs_request(np, NULL, &nmreq, NFSPROC_ACCESS, ctx, NULL, &nmrep, &xid, &status);
494 error = status;
1263 int error = 0, status, nfsvers, rpcflags = 0; local
1284 NULL, rpcflags, &nmrep, xidp, &status);
1286 error = status;
1841 int error = 0, lockerror = ENOENT, status, wccpostattr = 0, nfsvers; local
1947 error = nfs_request(np, NULL, &nmreq, NFSPROC_SETATTR, ctx, NULL, &nmrep, &xid, &status);
1963 error = status;
1966 error = status;
2268 int error = 0, lockerror = ENOENT, nfsvers, status; local
2434 int error = 0, lockerror, nfsvers, status, eof = 0; local
3239 int error = 0, lockerror = ENOENT, nfsvers, status; local
3334 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status, wccpostattr = 0; local
3483 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status, wccpostattr = 0, fmode = 0; local
3842 int error = 0, lockerror = ENOENT, status, wccpostattr = 0; local
4075 int error = 0, lockerror = ENOENT, status, fwccpostattr = 0, twccpostattr = 0; local
4152 int error = 0, lockerror = ENOENT, status, wccpostattr = 0, attrflag = 0; local
4253 int slen, error = 0, lockerror = ENOENT, busyerror = ENOENT, status, wccpostattr = 0; local
4412 int error = 0, lockerror = ENOENT, busyerror = ENOENT, status, wccpostattr = 0; local
4555 int error = 0, lockerror = ENOENT, status, wccpostattr = 0; local
5351 int i, status, attrflag, fhflag, more_entries = 1, eof, bp_dropped = 0; local
5756 int error = 0, lockerror = ENOENT, status, nfsvers, attrflag; local
6018 int error = 0, lockerror, status, wccpostattr = 0, nfsvers; local
6115 int error = 0, lockerror, status, nfsvers; local
[all...]
H A Dnfs_socket.c2301 uint32_t val, xid, procnum, taglen, cbid, numops, op, status; local
2307 xid = numops = op = status = procnum = taglen = cbid = 0;
2335 status = error;
2342 status = NFSERR_RETVOID;
2371 status = error;
2373 status = NFSERR_RESOURCE;
2375 status = NFSERR_SERVERFAULT;
2416 status = error;
2423 status = NFSERR_BADHANDLE;
2430 nfsm_chain_add_32(error, &nmrep, status);
3720 nfs_request_finish( struct nfsreq *req, struct nfsm_chain *nmrepp, int *status) argument
4127 nfs_request( nfsnode_t np, mount_t mp, struct nfsm_chain *nmrest, int procnum, vfs_context_t ctx, struct nfsreq_secinfo_args *si, struct nfsm_chain *nmrepp, u_int64_t *xidp, int *status) argument
4144 nfs_request2( nfsnode_t np, mount_t mp, struct nfsm_chain *nmrest, int procnum, thread_t thd, kauth_cred_t cred, struct nfsreq_secinfo_args *si, int flags, struct nfsm_chain *nmrepp, u_int64_t *xidp, int *status) argument
4194 nfs_request_gss( mount_t mp, struct nfsm_chain *nmrest, thread_t thd, kauth_cred_t cred, int flags, struct nfs_gss_clnt_ctx *cp, struct nfsm_chain *nmrepp, int *status) argument
4324 nfs_request_async_finish( struct nfsreq *req, struct nfsm_chain *nmrepp, u_int64_t *xidp, int *status) argument
[all...]
/darwin-on-arm/xnu/bsd/bsm/
H A Daudit_record.h249 token_t *au_to_return(char status, uint32_t ret);
250 token_t *au_to_return32(char status, uint32_t ret);
251 token_t *au_to_return64(char status, uint64_t ret);
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_bsd.c383 int status = KERN_SUCCESS; local
389 status = thread_block(function);
394 return status;
/darwin-on-arm/xnu/tools/tests/affinity/
H A Dpool.c328 int *status; local
490 if(ret = pthread_join(wp->thread, (void **)&status))
492 DBG("Thread %d,%d status %d\n", i, j, status);
H A Dsets.c346 int *status; local
490 if(ret = pthread_join(lp->stage[j]->thread, (void **)&status))
492 DBG("Thread %d,%d status %d\n", i, j, status);
/darwin-on-arm/xnu/bsd/sys/
H A Dfsctl.h118 extern int get_nspace_item_status(struct vnode *vp, int32_t *status);

Completed in 138 milliseconds

12