Searched refs:result (Results 251 - 271 of 271) sorted by relevance

<<11

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_sysctl.c2545 int result; local
2555 result = vnode_getwithref(imgsrc_rootvnodes[0]);
2556 if (result != 0) {
2557 return result;
2561 result = vnode_getwithref(devvp);
2562 if (result != 0) {
2566 result = sysctl_io_number(req, vnode_specrdev(devvp), sizeof(dev_t), NULL, NULL);
2571 return result;
H A Dubc_subr.c959 * is not the result of a mapping established via mmap()
1114 boolean_t result = FALSE; local
1117 result = memory_object_is_slid(vp->v_ubcinfo->ui_control);
1119 return result;
1230 * result in correct behavior.
H A Dpthread_support.c887 psynch_mtxcontinue(void * parameter, wait_result_t result) argument
897 switch (result) {
1421 psynch_cvcontinue(void * parameter, wait_result_t result) argument
1429 switch (result) {
1441 __PTHREAD_TRACE_DEBUG(_PSYNCH_TRACE_THWAKEUP | DBG_FUNC_NONE, 0xf4f3f2f1, (uintptr_t)uth, result, 0, 0);
H A Dkern_descrip.c2327 * Ignore result of kauth_authorize_fileop call.
2747 * result Pointer to fd we got
2754 * *result (modified) The fd which was allocated
2757 fdalloc(proc_t p, int want, int *result) argument
2786 *result = i;
2944 * resultfp Pointer to result fileproc
2946 * resultvp Pointer to result vnode pointer
3000 * resultfp Pointer to result fileproc
3002 * resultvp Pointer to result vnode pointer
3061 * resultfp Pointer to result filepro
[all...]
/darwin-on-arm/xnu/osfmk/default_pager/
H A Ddp_backing_store.c4353 int result; local
4375 result = KERN_FAILURE;
4378 result = KERN_SUCCESS;
4380 return result;
4393 kern_return_t result; local
4410 result = KERN_FAILURE;
4412 result = KERN_SUCCESS;
4414 return result;
/darwin-on-arm/xnu/bsd/netat/
H A Dasp_proto.c1852 int nbds, result, msize, Primitive; local
2092 result = primitives->CmdReplyReq.CmdResult;
2132 *(long *)atpBDS[0].bdsUserData = (long)result;
2133 *(long *)atp->user_bytes = (long)result;
2136 ("ASPputmsg: ATP CmdReplyReq, loc=%d, state=%s, msgsize = %d, result = %d, tid = %d\n",
2138 (mdata ? gbuf_msgsize(mdata) : 0), result, tid));
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_vfsops.c2710 int result; local
2718 result = hfs_vget(VFSTOHFS(mp), ntohl(hfsfhp->hfsfid_cnid), &nvp, 0, 0);
2719 if (result) {
2720 if (result == ENOENT)
2721 result = ESTALE;
2722 return result;
4539 * but it will result in complexity like handling of two free
4553 * Relocation of extents will result in no net change in the total
4846 * in the filesystem without garbling the IV data. As a result, we need to
4870 * NOTE: Many external drives will result i
7346 hfs_getvoluuid(struct hfsmount *hfsmp, uuid_t result) argument
[all...]
/darwin-on-arm/xnu/osfmk/x86_64/
H A Dpmap.c993 boolean_t result; local
1007 result = (pv_h->pmap == PMAP_NULL);
1008 return(result);
2104 * on a remote processor result in a signal, to
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_input.c605 errno_t result; local
624 result = filter->ipf_filter.ipf_input(
627 if (result == EJUSTRETURN) {
631 if (result != 0) {
1624 * As a result, n+1 frags are actually allowed per packet, but
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_output.c580 * result: IPv6 dest2 payload
606 * result: IPv6 hbh dest1 rthdr dest2 payload
648 errno_t result; local
650 result = filter->ipf_filter.ipf_output(filter->ipf_filter.cookie, (mbuf_t*)&m, ippo);
651 if (result == EJUSTRETURN) {
655 if (result != 0) {
H A Dipsec.c1940 int result; local
1960 result = ipsec_in_reject(sp, m);
1965 return result;
1999 int result; local
2018 result = ipsec_in_reject(sp, m);
2023 return result;
H A Dah_core.c1470 (algo->result)(&algos, (caddr_t) &sumbuf[0], sizeof(sumbuf));
1697 (algo->result)(&algos, (caddr_t) &sumbuf[0], sizeof(sumbuf));
/darwin-on-arm/xnu/bsd/sys/
H A Dvnode.h307 * Compound resolver result
309 * The trigger vnode callbacks use a compound result value. In addition
315 * resolver changes state (ie resolved or unresolved). A result
327 * Extract values from a compound resolver result
406 @param result A compound resolver result value
407 @return EINVAL if result value is invalid or vp isn't a trigger vnode
409 extern int vnode_trigger_update(vnode_t vp, resolver_result_t result);
778 @discussion Note that this routine is unsynchronized; it is only a snapshot and its result may cease to be true at the moment it is returned..
787 @discussion Note that this routine is unsynchronized; it is only a snapshot and its result ma
[all...]
/darwin-on-arm/xnu/osfmk/ipc/
H A Dipc_mqueue.c105 void ipc_mqueue_receive_results(wait_result_t result);
/darwin-on-arm/xnu/libkern/kxld/
H A Dkxld_object.c1964 kern_return_t result = KERN_FAILURE; local
1967 result = kxld_symtab_get_sym_index(object->symtab, sym, &i);
1968 require_noerr(result, finish);
/darwin-on-arm/xnu/osfmk/arm/
H A Dpmap.c1858 boolean_t result; local
1868 result = (pv_h->pmap == PMAP_NULL);
1870 return (result);
/darwin-on-arm/xnu/osfmk/i386/
H A Dpmap.c1215 boolean_t result; local
1229 result = (pv_h->pmap == PMAP_NULL);
1230 return(result);
/darwin-on-arm/xnu/bsd/net/
H A Dif_bond.c1037 int result = 0; local
1052 result = EBUSY;
1068 result = error;
1076 return (result);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOPMrootDomain.cpp3782 IOReturn result; local
3815 result = gSleepPolicyHandler(gSleepPolicyTarget, gSleepPolicyVars, params);
3823 if ((result != kIOReturnSuccess) ||
5773 // event that we must handle. This may be a result of an 'environment' interrupt
7741 record_to->eventResult = details->result;
7805 record_to->eventResult = details->result;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_syscalls.c3723 * Ignore result of kauth_authorize_fileop call.
3849 * Ignore result of kauth_authorize_fileop call.
4074 * Ignore result of kauth_authorize_fileop call.
4366 errno_t *result = NULL; local
4412 * bogus result.
4425 * Find out how many entries we have, so we can allocate the result
4485 MALLOC(result, errno_t *, desc_actual * sizeof(errno_t), M_TEMP, M_WAITOK);
4486 if (result == NULL) {
4552 result[i] = error;
4556 result[
[all...]
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c729 * As a result, functions called from probe context may only call other DTrace
1199 uint64_t result[2]; local
1201 result[0] = addend1[0] + addend2[0];
1202 result[1] = addend1[1] + addend2[1] +
1203 (result[0] < addend1[0] || result[0] < addend2[0] ? 1 : 0);
1205 sum[0] = result[0];
1206 sum[1] = result[1];
12144 * it would be a result of corrupted DOF in the driver
12223 * (The ECBs that result fro
[all...]

Completed in 223 milliseconds

<<11