Searched refs:result (Results 76 - 100 of 192) sorted by relevance

12345678

/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOCPU.cpp156 kern_return_t result = KERN_SUCCESS; local
167 if (KERN_SUCCESS == result)
168 result = ret;
170 return (result);
482 bool result; local
485 result = dict->serialize(serialize);
487 return result;
494 IOReturn result; local
500 result = IOUserClient::clientHasPrivilege(current_task(), kIOClientPrivilegeAdministrator);
501 if (result !
[all...]
H A DIOCatalogue.cpp645 kern_return_t result = KERN_FAILURE; local
666 result = kIOReturnOffline;
669 result = start_prelink_module(idx);
672 return result;
764 kern_return_t result = KERN_FAILURE; local
796 return result;
1522 bool result = false; local
1526 result = (*record_startup_extensions_function)();
1530 result = false;
1534 return result;
1545 bool result = false; local
1591 kern_return_t result = KERN_SUCCESS; local
[all...]
H A DIORangeAllocator.cpp185 IORangeScalar * result,
193 if( !size || !result)
231 *result = data;
184 allocate( IORangeScalar size, IORangeScalar * result, IORangeScalar alignment ) argument
/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dether_inet6_pr_module.c145 errno_t result; local
154 result = nd6_lookup_ipv6(ifp, (const struct sockaddr_in6*)dst_netaddr,
157 if (result == 0) {
164 return result;
H A Dether_if_module.c570 errno_t result = EAFNOSUPPORT; local
581 result = EADDRNOTAVAIL;
583 result = 0;
589 result = EADDRNOTAVAIL;
591 result = 0;
595 return result;
H A Dif.c527 int result = 0; local
530 for (ifp = ifnet_head.tqh_first; ifp && !result; ifp = ifp->if_link.tqe_next) {
539 result = 1;
547 return result;
582 struct ifaddr *result = NULL; local
588 for (ifp = ifnet_head.tqh_first; ifp && !result; ifp = ifp->if_link.tqe_next) {
595 result = ifa;
602 result = ifa;
606 if (result)
607 ifaref(result);
624 struct ifaddr *result = NULL; local
654 struct ifaddr *result = NULL; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dfiledesc.h137 extern int fdalloc(proc_t p, int want, int *result);
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIORangeAllocator.h80 @result Returns true if the instance is successfully initialized, false on failure. */
94 @result Returns the new IORangeAllocator instance, to be released by the caller, or zero on failure. */
106 @result Returns the count of free fragments.
114 @result Returns the current capacity of free fragment list.
130 @result Returns the total of the free fragments sizes.
139 @param result The beginning of the range allocated is returned here on success.
141 @result Returns true if the allocation was successful, else false.
145 IORangeScalar * result,
153 @result Returns true if the allocation was successful, else false.
H A DOSMessageNotification.h137 IOReturn result; member in struct:IOAsyncCompletionContent
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dstartup.c140 kern_return_t result; local
207 result = kernel_thread_create((thread_continue_t)kernel_bootstrap_thread, NULL, MAXPRI_KERNEL, &thread);
209 if (result != KERN_SUCCESS) panic("kernel_bootstrap: result = %08X\n", result);
H A Dclock.c753 uint64_t *result)
759 *result = mach_absolute_time() + abstime;
765 uint64_t *result)
767 *result = mach_absolute_time() + abstime;
772 uint64_t *result)
774 *result = mach_absolute_time();
750 clock_interval_to_deadline( uint32_t interval, uint32_t scale_factor, uint64_t *result) argument
763 clock_absolutetime_interval_to_deadline( uint64_t abstime, uint64_t *result) argument
771 clock_get_uptime( uint64_t *result) argument
H A Dsched_prim.c461 boolean_t result = FALSE; local
506 result = TRUE;
528 return (result);
623 wait_interrupt_t result = thread->options & TH_OPT_INTMASK; local
627 return result;
1031 * result Wakeup result the thread should see
1087 * result Wakeup result the thread should see
1092 wait_result_t result)
1090 clear_wait( thread_t thread, wait_result_t result) argument
1114 thread_wakeup_prim( event_t event, boolean_t one_thread, wait_result_t result) argument
2107 boolean_t result = FALSE; local
2550 ast_t result = AST_NONE; local
2992 kern_return_t result; local
3026 kern_return_t result; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/
H A Ddb_command.c178 int result = CMD_NONE; local
199 if (result == CMD_FOUND) {
200 result = CMD_AMBIGUOUS;
206 result = CMD_FOUND;
210 if (result == CMD_NONE) {
213 result = CMD_HELP;
215 return (result);
262 int result; local
289 result = db_cmd_search(db_tok_string,
292 switch (result) {
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_symfile.c80 static int file_ioctl(void * p1, void * p2, int theIoctl, caddr_t result) argument
85 (device, theIoctl, result, S_IFBLK, p2));
88 static int device_ioctl(void * p1, __unused void * p2, int theIoctl, caddr_t result) argument
90 return (VNOP_IOCTL(p1, theIoctl, result, 0, p2));
112 int (*do_ioctl)(void * p1, void * p2, int theIoctl, caddr_t result);
H A Dkern_authorization.c399 int result, ret, i; local
403 result = scope->ks_callback(credential, scope->ks_idata, action, arg0, arg1, arg2, arg3);
405 result = KAUTH_RESULT_DEFER;
424 (result == KAUTH_RESULT_DEFER))
425 result = ret;
431 return(result == KAUTH_RESULT_ALLOW ? 0 : EPERM);
498 /* no explicit result, so defer to others in the chain */
504 * of the file system operation, not an authorization check. Thus the result is
600 /* no explicit result, so defer to others in the chain */
771 * ACL is in initial, and the result i
782 kauth_acl_t inherit, result; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/vm/
H A Dvm_map.c594 register vm_map_t result; local
596 result = (vm_map_t) zalloc(vm_map_zone);
597 if (result == VM_MAP_NULL)
600 vm_map_first_entry(result) = vm_map_to_entry(result);
601 vm_map_last_entry(result) = vm_map_to_entry(result);
602 result->hdr.nentries = 0;
603 result->hdr.entries_pageable = pageable;
605 result
1520 kern_return_t result = KERN_SUCCESS; local
2184 kern_return_t result; local
3068 register kern_return_t result = KERN_INVALID_ARGUMENT; local
4944 register kern_return_t result; local
5067 kern_return_t result; local
7000 kern_return_t result; /* Return value from local
7464 kern_return_t result; local
8420 boolean_t result; local
10010 kern_return_t result; local
10346 kern_return_t result; local
[all...]
H A Dvm_purgeable.c138 kern_return_t result; local
141 result=kmem_realloc(kernel_map, (vm_offset_t)tokens, token_q_cur_size,
144 result=kmem_alloc(kernel_map, (vm_offset_t*)&new_loc, alloc_size);
149 if (result) {
153 return result;
/macosx-10.5.8/xnu-1228.15.4/bsd/isofs/cd9660/
H A Dcd9660_rrip.c471 int result; member in struct:__anon122
483 int result; local
503 result = 0;
514 result |= (ptable->func(phead,ana));
521 if (result&ISO_SUSP_STOP) {
522 result &= ~ISO_SUSP_STOP;
559 if (!(ptable->result&result))
562 return result;
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_link.c1174 int result; local
1183 result = hfs_buildattrkey(fileid, FIRST_LINK_XATTR_NAME, (HFSPlusAttrKey *)&iterator->key);
1184 if (result) {
1212 result = BTInsertRecord(btfile, iterator, &btdata, datasize);
1213 if (result == btExists) {
1214 result = BTReplaceRecord(btfile, iterator, &btdata, datasize);
1220 return MacToVFSError(result);
1236 int result; local
1245 result = hfs_buildattrkey(fileid, FIRST_LINK_XATTR_NAME, (HFSPlusAttrKey *)&iterator->key);
1246 if (result)
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c729 int32_t result; // � 1 local
738 result = -1; // assume searchKey < trialKey
752 result = 0;
759 result = 1;
767 result = 1;
775 result = 1;
778 return( result );
793 int32_t result; // � 1 local
802 result = -1; // assume searchKey < trialKey
816 result
2016 OSErr result; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/ppc/
H A Dbcmp.s46 mr r6,r3 ; copy LHS ptr so we can use r3 as result
60 blr ; done, result in r3
/macosx-10.5.8/xnu-1228.15.4/security/
H A Dmac_internal.h342 * returns its value via 'result' in the scope of the caller, which
344 * a meaningful result.
356 result = result composition \
367 result = result composition \
H A Dmac_inet.c235 int result; local
239 result = 1;
242 return (result);
/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSRuntime.cpp346 void * result; local
348 result = (void *) kern_os_malloc( size);
349 return( result);
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dvers_rsrc.c166 VERS_version result = -1; local
364 result = (vers_major * VERS_MAJOR_MULT) +
370 return result;

Completed in 156 milliseconds

12345678