Searched refs:retval (Results 176 - 200 of 918) sorted by relevance

1234567891011>>

/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dhibernate.c56 kern_return_t retval = KERN_SUCCESS; local
65 retval = KERN_RESOURCE_SHORTAGE;
73 retval = KERN_RESOURCE_SHORTAGE;
82 retval = KERN_RESOURCE_SHORTAGE;
90 return (retval);
106 kern_return_t retval = KERN_SUCCESS; local
139 if (retval != KERN_SUCCESS && need_to_unlock_decompressor == TRUE) {
143 return (retval);
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A Ddirhardlink.c38 int retval = 0; local
57 retval = BTSearchRecord(fcb, &search_iterator, kInvalidMRUCacheKey,
59 if (retval) {
67 retval = ENOENT;
73 retval = ENOENT;
98 retval = BTSearchRecord(fcb, &search_iterator, kInvalidMRUCacheKey,
100 if (retval) {
123 return retval;
366 int retval; local
378 retval
388 int retval = 0; local
436 int retval = 0; local
585 int retval = 0; local
841 int retval = 0; local
947 int retval; local
1130 int retval = 0; local
1236 int retval = 0; local
1385 int retval = 0; local
[all...]
/macosx-10.10.1/UserNotification-29/Libunc/
H A DUNCUserNotification.c210 const char **p = contents, *retval = NULL;
212 while (!retval && p && *p) {
213 if (0 == strcmp(*p++, kUNCSessionIDKey)) retval = *p;
216 return retval;
222 int retval = ERR_SUCCESS, itimeout = (timeout > 0.0 && timeout < INT_MAX) ? (int)timeout : 0;
240 retval = task_get_bootstrap_port(mach_task_self(), &bootstrapPort);
241 if (ERR_SUCCESS == retval && MACH_PORT_NULL != bootstrapPort) retval = bootstrap_look_up(bootstrapPort, namebuffer, &serverPort);
242 if (ERR_SUCCESS != retval || MACH_PORT_NULL == serverPort) retval
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/minitest/
H A Dmock.rb35 # +blk+, and returns +retval+.
58 def expect(name, retval, args=[], &blk)
61 @expected_calls[name] << { :retval => retval, :block => blk }
64 @expected_calls[name] << { :retval => retval, :args => args }
72 "#{name}(#{data[:args].inspect[1..-2]}) => #{data[:retval].inspect}"
115 expected_args, retval, val_block =
116 expected_call.values_at(:args, :retval, :block)
124 return retval
[all...]
/macosx-10.10.1/CommonCrypto-60061/test/CommonCrypto/
H A DCommonDigest.c212 byteBuffer retval = mallocByteBuffer(CC_MD2_BLOCK_LONG); local
213 memcpy(retval->bytes, ctx.state, CC_MD2_BLOCK_LONG);
215 return retval;
223 byteBuffer retval = mallocByteBuffer(CC_MD4_DIGEST_LENGTH); local
224 memcpy(retval->bytes, &ctx.A, sizeof(CC_LONG));
225 memcpy(retval->bytes + sizeof(CC_LONG), &ctx.B, sizeof(CC_LONG));
226 memcpy(retval->bytes + 2*sizeof(CC_LONG), &ctx.C, sizeof(CC_LONG));
227 memcpy(retval->bytes + 3*sizeof(CC_LONG), &ctx.D, sizeof(CC_LONG));
229 return retval;
236 byteBuffer retval local
249 byteBuffer retval = mallocByteBuffer(CC_SHA1_DIGEST_LENGTH); local
263 byteBuffer retval = mallocByteBuffer(CC_SHA224_DIGEST_LENGTH); local
273 byteBuffer retval = mallocByteBuffer(CC_SHA256_DIGEST_LENGTH); local
283 byteBuffer retval = mallocByteBuffer(CC_SHA384_DIGEST_LENGTH); local
293 byteBuffer retval = mallocByteBuffer(CC_SHA512_DIGEST_LENGTH); local
355 int retval; local
[all...]
H A DCommonBigDigest.c60 uint8_t *retval = malloc(testsz);
61 if(!retval) return retval;
62 for(size_t i=0; i<testsz; i++) retval[i] = i & 0xff;
63 return retval;
/macosx-10.10.1/MITKerberosShim-66/profile/
H A Dprof_parse.c78 errcode_t retval; local
100 retval = profile_find_node_subsection(state->root_section,
103 if (retval == PROF_NO_SECTION) {
104 retval = profile_add_node(state->root_section,
107 if (retval)
108 return retval;
109 } else if (retval)
110 return retval;
133 retval = profile_get_node_parent(state->current_section,
135 if (retval)
225 errcode_t retval; local
379 long retval; local
[all...]
H A Dprof_init.c30 errcode_t retval = 0; local
44 retval = profile_open_file(*fs, &new_file);
46 if (retval == ENOENT || retval == EACCES || retval == EPERM) {
49 if (retval) {
51 return retval;
115 errcode_t retval; local
148 retval = profile_init((const_profile_filespec_t *) filenames,
155 return retval;
[all...]
H A Dprof_tree.c122 errcode_t retval; local
139 retval = profile_verify_node(p);
140 if (retval)
141 return retval;
152 errcode_t retval; local
171 retval = profile_create_node(name, value, &new);
172 if (retval)
173 return retval;
322 errcode_t retval; local
324 retval
355 errcode_t retval; local
457 errcode_t retval; local
[all...]
/macosx-10.10.1/CommonCrypto-60061/test/util/
H A Dtestutil.c13 int retval = 0; local
16 retval = 1;
22 retval = 1;
24 return retval;
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/
H A DIWebCache.idl43 HRESULT disabled([out, retval] BOOL*);
44 HRESULT cacheFolder([out, retval] BSTR* location);
H A DIWebUIDelegate.idl164 HRESULT chooseFilename([out, retval] BSTR* fileName);
200 HRESULT createWebViewWithRequest([in] IWebView* sender, [in] IWebURLRequest* request, [out, retval] IWebView** newWebView);
256 HRESULT webViewFirstResponder([in] IWebView* sender, [out, retval] HWND* responderHWnd);
288 HRESULT webViewStatusText([in] IWebView* sender, [out, retval] BSTR* text);
302 HRESULT webViewAreToolbarsVisible([in] IWebView* sender, [out, retval] BOOL* visible);
323 HRESULT webViewIsStatusBarVisible([in] IWebView* sender, [out, retval] BOOL* visible);
345 HRESULT webViewIsResizable([in] IWebView* sender, [out, retval] BOOL* resizable);
378 HRESULT webViewFrame([in] IWebView* sender, [out, retval] RECT* frame);
399 HRESULT webViewContentRect([in] IWebView* sender, [out, retval] RECT* contentRect);
423 HRESULT runJavaScriptConfirmPanelWithMessage([in] IWebView* sender, [in] BSTR message, [out, retval] BOO
[all...]
/macosx-10.10.1/OpenSSL098-52/bin/
H A Dinstall_manpages182 my $retval = 0;
183 $retval = &do_man($srcdir."/doc/apps", $dstroot, 1);
184 exit $retval if $retval;
186 $retval = &do_man($srcdir."/doc/crypto", $dstroot, 3);
187 exit $retval if $retval;
189 $retval = &do_man($srcdir."/doc/ssl", $dstroot, 3);
190 exit $retval if $retval;
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/Accessible2/
H A DAccessibleRelation.idl167 @retval S_OK
171 [out, retval] BSTR *relationType
176 @retval S_OK
180 [out, retval] BSTR *localizedRelationType
185 @retval S_OK
189 [out, retval] long *nTargets
196 @retval S_OK
197 @retval E_INVALIDARG if bad [in] passed
203 [out, retval] IUnknown **target
216 @retval S_O
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/include/dns/
H A Dpeer.h114 dns_peer_t **retval);
120 dns_peerlist_currpeer(dns_peerlist_t *peers, dns_peer_t **retval);
139 dns_peer_getbogus(dns_peer_t *peer, isc_boolean_t *retval);
145 dns_peer_getrequestixfr(dns_peer_t *peer, isc_boolean_t *retval);
151 dns_peer_getprovideixfr(dns_peer_t *peer, isc_boolean_t *retval);
157 dns_peer_getrequestnsid(dns_peer_t *peer, isc_boolean_t *retval);
163 dns_peer_getsupportedns(dns_peer_t *peer, isc_boolean_t *retval);
169 dns_peer_gettransfers(dns_peer_t *peer, isc_uint32_t *retval);
175 dns_peer_gettransferformat(dns_peer_t *peer, dns_transfer_format_t *retval);
181 dns_peer_getkey(dns_peer_t *peer, dns_name_t **retval);
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dpthread_shims.c256 bsdthread_create(struct proc *p, struct bsdthread_create_args *uap, user_addr_t *retval) argument
258 return pthread_functions->bsdthread_create(p, uap->func, uap->func_arg, uap->stack, uap->pthread, uap->flags, retval);
262 bsdthread_register(struct proc *p, struct bsdthread_register_args *uap, __unused int32_t *retval) argument
268 uap->tsd_offset, retval);
273 retval);
278 bsdthread_terminate(struct proc *p, struct bsdthread_terminate_args *uap, int32_t *retval) argument
280 return pthread_functions->bsdthread_terminate(p, uap->stackaddr, uap->freesize, uap->port, uap->sem, retval);
284 bsdthread_ctl(struct proc *p, struct bsdthread_ctl_args *uap, int *retval) argument
286 return pthread_functions->bsdthread_ctl(p, uap->cmd, uap->arg1, uap->arg2, uap->arg3, retval);
291 thread_selfid(struct proc *p, __unused struct thread_selfid_args *uap, uint64_t *retval) argument
297 workq_kernreturn(struct proc *p, struct workq_kernreturn_args *uap, int32_t *retval) argument
303 workq_open(struct proc *p, __unused struct workq_open_args *uap, int32_t *retval) argument
311 psynch_mutexwait(proc_t p, struct psynch_mutexwait_args *uap, uint32_t *retval) argument
317 psynch_mutexdrop(proc_t p, struct psynch_mutexdrop_args *uap, uint32_t *retval) argument
323 psynch_cvbroad(proc_t p, struct psynch_cvbroad_args *uap, uint32_t *retval) argument
329 psynch_cvsignal(proc_t p, struct psynch_cvsignal_args *uap, uint32_t *retval) argument
335 psynch_cvwait(proc_t p, struct psynch_cvwait_args * uap, uint32_t * retval) argument
341 psynch_cvclrprepost(proc_t p, struct psynch_cvclrprepost_args * uap, int *retval) argument
347 psynch_rw_longrdlock(proc_t p, struct psynch_rw_longrdlock_args * uap, uint32_t *retval) argument
353 psynch_rw_rdlock(proc_t p, struct psynch_rw_rdlock_args * uap, uint32_t * retval) argument
359 psynch_rw_unlock(proc_t p, struct psynch_rw_unlock_args *uap, uint32_t *retval) argument
365 psynch_rw_unlock2(__unused proc_t p, __unused struct psynch_rw_unlock2_args *uap, __unused uint32_t *retval) argument
371 psynch_rw_wrlock(proc_t p, struct psynch_rw_wrlock_args *uap, uint32_t *retval) argument
377 psynch_rw_yieldwrlock(proc_t p, struct psynch_rw_yieldwrlock_args *uap, uint32_t *retval) argument
383 psynch_rw_upgrade(__unused proc_t p, __unused struct psynch_rw_upgrade_args * uap, __unused uint32_t *retval) argument
389 psynch_rw_downgrade(__unused proc_t p, __unused struct psynch_rw_downgrade_args * uap, __unused int *retval) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/perf_index/
H A Dperf_index.c59 int retval; local
61 retval = _NSGetExecutablePath(binpath, &size);
62 assert(retval == 0);
140 int retval; local
148 retval = parse_args(argc, argv, &args);
149 if(retval) {
154 retval = find_test(args.test_name, test_path);
155 if(retval) {
161 if(retval) {
172 retval
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dhistory.c794 int i = -1, retval; local
811 for (i = 0, retval = HLAST(h, &ev);
812 retval != -1;
813 retval = HPREV(h, &ev), i++) {
842 int retval; local
844 for (retval = HCURR(h, ev); retval != -1; retval = HPREV(h, ev))
856 int retval; local
858 for (retval
876 int retval; local
894 int retval; local
912 int retval; local
931 int retval; local
[all...]
/macosx-10.10.1/libedit-40/src/
H A Dhistory.c836 int i = -1, retval; local
854 for (i = 0, retval = HLAST(h, &ev);
855 retval != -1;
856 retval = HPREV(h, &ev), i++) {
886 int retval; local
888 for (retval = HCURR(h, ev); retval != -1; retval = HPREV(h, ev))
900 int retval; local
902 for (retval
924 int retval; local
942 int retval; local
960 int retval; local
979 int retval; local
[all...]
/macosx-10.10.1/CommonCrypto-60061/lib/
H A DCommonRSACryptor.c64 CCRSACryptor *retval; local
66 if((retval = CC_XMALLOC(sizeof(CCRSACryptor))) == NULL) return NULL;
67 retval->keySize = nbits;
68 ccrsa_ctx_n(retval->fk) = n;
69 return retval;
164 CCCryptorStatus retval; local
180 __Require_Action((privateCryptor = ccMallocRSACryptor(keysize, ccRSAKeyPrivate)) != NULL, errOut, retval = kCCMemoryFailure);
182 // __Require_Action((ccrsa_generate_key(keysize, privateCryptor->rsaKey.full, sizeof(e), &e, theRng) == 0), errOut, retval = kCCDecodeError);
183 __Require_Action((ccrsa_generate_931_key(keysize, privateCryptor->fk, eSize, eBytes, theRng1, theRng2) == 0), errOut, retval = kCCDecodeError);
187 __Require_Action((publicCryptor = CCRSACryptorGetPublicKeyFromPrivateKey(privateCryptor)) != NULL, errOut, retval
217 CCRSAKeyType retval; local
246 CCCryptorStatus retval; local
289 CCCryptorStatus retval = kCCSuccess; local
331 CCCryptorStatus retval = kCCSuccess; local
361 CCCryptorStatus retval = kCCSuccess; local
453 CCCryptorStatus retval; local
521 CCCryptorStatus retval = kCCSuccess; local
527 __Require_Action(ccn_read_uint(n, m, modulusLength, modulus) == 0, errOut, retval = kCCParamError); local
532 __Require_Action(ccn_read_uint(n, ccrsa_ctx_m(rsaKey->fk), modulusLength, modulus) == 0, errOut, retval = kCCParamError); local
533 __Require_Action(ccn_read_uint(n, ccrsa_ctx_e(rsaKey->fk), exponentLength, exponent) == 0, errOut, retval = kCCParamError); local
549 __Require_Action(ccn_read_uint(psize, CCZP_PRIME(ccrsa_ctx_private_zp(privk)), pLength, p) == 0, errOut, retval = kCCParamError); local
551 __Require_Action(ccn_read_uint(qsize, CCZP_PRIME(ccrsa_ctx_private_zq(privk)), qLength, q) == 0, errOut, retval = kCCParamError); local
692 CCCryptorStatus retval = kCCSuccess; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/Regressions/
H A Dsecd-58-password-change.c56 bool retval; local
57 ok((retval = SOSAccountAssertUserCredentials(account, acct_name, password, &error)), "Credential setting (%@)", error);
59 return retval;
64 bool retval; local
65 ok((retval = SOSAccountResetToOffering(account, &error)), "Reset to offering (%@)", error);
67 return retval;
72 bool retval; local
73 ok((retval = SOSAccountJoinCircles(account, &error)), "Join Circle (%@)", error);
75 return retval;
80 bool retval local
[all...]
/macosx-10.10.1/zsh-61/zsh/Functions/VCS_Info/
H A Dvcs_info52 local -i found retval
69 retval=$?
70 if (( retval == 1 )); then
72 elif (( retval == 2 )); then
124 retval=$?
125 if (( retval == 1 )); then
127 elif (( retval == 2 )); then
/macosx-10.10.1/dtrace-147/libdwarf/
H A Ddwarf_addr_finder.c312 int retval = DW_DLV_OK; local
348 retval = DW_DLV_ERROR;
349 return retval;
380 retval = res;
390 retval = fres;
392 retval = ares;
394 return retval;
587 int retval = DW_DLV_OK; local
605 retval = res;
608 retval
617 int retval = DW_DLV_OK; local
650 int retval = DW_DLV_OK; local
685 int retval = DW_DLV_NO_ENTRY; local
[all...]
/macosx-10.10.1/libpthread-105.1.4/kern/
H A Dkern_internal.h233 uint32_t kwe_psynchretval; /* thread retval */
267 int _bsdthread_create(struct proc *p, user_addr_t user_func, user_addr_t user_funcarg, user_addr_t user_stack, user_addr_t user_pthread, uint32_t flags, user_addr_t *retval);
268 int _bsdthread_register(struct proc *p, user_addr_t threadstart, user_addr_t wqthread, int pthsize, user_addr_t dummy_value, user_addr_t targetconc_ptr, uint64_t dispatchqueue_offset, int32_t *retval);
269 int _bsdthread_terminate(struct proc *p, user_addr_t stackaddr, size_t size, uint32_t kthport, uint32_t sem, int32_t *retval);
270 int _bsdthread_ctl_set_qos(struct proc *p, user_addr_t cmd, mach_port_name_t kport, user_addr_t tsd_priority_addr, user_addr_t arg3, int *retval);
271 int _bsdthread_ctl_set_self(struct proc *p, user_addr_t cmd, pthread_priority_t priority, mach_port_name_t voucher, _pthread_set_flags_t flags, int *retval);
272 int _bsdthread_ctl_qos_override_start(struct proc *p, user_addr_t cmd, mach_port_name_t kport, pthread_priority_t priority, user_addr_t arg3, int *retval);
273 int _bsdthread_ctl_qos_override_end(struct proc *p, user_addr_t cmd, mach_port_name_t kport, user_addr_t arg2, user_addr_t arg3, int *retval);
274 int _bsdthread_ctl_qos_override_dispatch(struct proc __unused *p, user_addr_t __unused cmd, mach_port_name_t kport, pthread_priority_t priority, user_addr_t arg3, int __unused *retval);
275 int _bsdthread_ctl_qos_override_reset(struct proc __unused *p, user_addr_t __unused cmd, user_addr_t arg1, user_addr_t arg2, user_addr_t arg3, int __unused *retval);
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/CellSPU/
H A DSPUNopFiller.cpp142 SPUOpPlace retval; local
145 case 0: retval = pseudo; break;
146 case 1: retval = odd; break;
147 case 2: retval = even; break;
148 default: retval= pseudo;
152 return retval;

Completed in 329 milliseconds

1234567891011>>