Searched refs:target (Results 226 - 250 of 2227) sorted by relevance

1234567891011>>

/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dhv_support.h49 typedef void (*hv_callback_0_t)(void *target);
50 typedef void (*hv_callback_1_t)(void *target, int argument);
71 extern void hv_set_task_target(void *target);
72 extern void hv_set_thread_target(void *target);
/macosx-10.10/zsh-61/zsh/Config/
H A Dclean.mk39 target=`echo $@ | sed s/-recursive//`; \
41 (cd $$subdir && $(MAKE) $(MAKEDEFS) $$target) || exit 1; \
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/reachability/
H A DSCNetworkReachabilityServer_server.c82 #pragma mark SCNetworkReachability target support
118 _target_group(SCNetworkReachabilityRef target) argument
120 SCNetworkReachabilityPrivateRef targetPrivate = (SCNetworkReachabilityPrivateRef)target;
127 _target_queue(SCNetworkReachabilityRef target) argument
129 SCNetworkReachabilityPrivateRef targetPrivate = (SCNetworkReachabilityPrivateRef)target;
144 _target_reference_add(SCNetworkReachabilityRef target, CFDataRef digest, xpc_connection_t connection) argument
146 SCNetworkReachabilityPrivateRef targetPrivate = (SCNetworkReachabilityPrivateRef)target;
148 // take a reference to the target
149 CFRetain(target);
160 snprintf(qname, sizeof(qname), "com.apple.SCNetworkReachability.%p.server", target);
194 _target_reference_remove(SCNetworkReachabilityRef target, xpc_connection_t connection) argument
239 _target_reply_add_reachability(SCNetworkReachabilityRef target, xpc_object_t reply) argument
339 _target_watcher_add(SCNetworkReachabilityRef target, xpc_connection_t connection, uint64_t target_id) argument
402 _target_watcher_checkin(SCNetworkReachabilityRef target, xpc_connection_t connection, uint64_t target_id) argument
453 _target_watcher_remove(SCNetworkReachabilityRef target, xpc_connection_t connection, uint64_t target_id) argument
643 SCNetworkReachabilityRef target = (SCNetworkReachabilityRef)value; local
738 SCNetworkReachabilityRef target; local
754 _client_target_set(reach_client_t *client, uint64_t target_id, SCNetworkReachabilityRef target) argument
807 _reach_changed(SCNetworkReachabilityRef target, SCNetworkReachabilityFlags flags, void *info) argument
980 __block SCNetworkReachabilityRef target = NULL; local
1215 SCNetworkReachabilityRef target = NULL; local
1283 SCNetworkReachabilityRef target = NULL; local
1350 SCNetworkReachabilityRef target = NULL; local
1594 SCNetworkReachabilityRef target = NULL; local
1694 SCNetworkReachabilityRef target = (SCNetworkReachabilityRef)value; local
1762 SCNetworkReachabilityRef target = (SCNetworkReachabilityRef)value; local
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DEventContext.cpp37 EventContext::EventContext(PassRefPtr<Node> node, PassRefPtr<EventTarget> currentTarget, PassRefPtr<EventTarget> target) argument
40 , m_target(target)
67 MouseOrFocusEventContext::MouseOrFocusEventContext(PassRefPtr<Node> node, PassRefPtr<EventTarget> currentTarget, PassRefPtr<EventTarget> target) argument
68 : EventContext(node, currentTarget, target)
95 TouchEventContext::TouchEventContext(PassRefPtr<Node> node, PassRefPtr<EventTarget> currentTarget, PassRefPtr<EventTarget> target) argument
96 : EventContext(node, currentTarget, target)
132 ASSERT(isReachable(touchList->item(i)->target()->toNode()));
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistMove.tcl12 proc tablelist::moveRow {win source target {withDescendants 1}} {
26 if {$target > $data(itemCount)} {
27 set target $data(itemCount)
28 } elseif {$target < 0} {
29 set target 0
31 if {$target == $source} {
38 if {$target == [nodeRow $win $sourceKey end 1]} {
44 if {($target <= [keyToRow $win $parentKey] || $target > $parentEndRow) &&
50 if {$target !
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducnv_cnv.c49 char **target, const char *targetLimit,
53 char *t=*target;
71 *target=t;
89 UChar **target, const UChar *targetLimit,
93 UChar *t=*target;
111 *target=t;
129 UChar **target, const UChar *targetLimit,
136 t=*target;
154 if((*target+1)<t) {
161 *target
47 ucnv_fromUWriteBytes(UConverter *cnv, const char *bytes, int32_t length, char **target, const char *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
87 ucnv_toUWriteUChars(UConverter *cnv, const UChar *uchars, int32_t length, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
127 ucnv_toUWriteCodePoint(UConverter *cnv, UChar32 c, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/
H A DMakefile.in42 target=`echo $@ | sed s/-recursive//`; \
44 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
47 local_target="$$target-local"; \
49 local_target="$$target"; \
54 $(MAKE) "$$target-local" || exit; \
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DBaseAST.cpp39 RefAST target,bool partialMatch) member in namespace:antlr
46 if ( (partialMatch && sibling->equalsTreePartial(target)) ||
47 (!partialMatch && sibling->equalsTree(target)) ) {
52 RefBaseAST(sibling->getFirstChild())->doWorkForFindAll(v, target, partialMatch);
164 ANTLR_USE_NAMESPACE(std)vector<RefAST> BaseAST::findAll(RefAST target) argument
169 if (target) {
170 doWorkForFindAll(roots,target,false); // find all matches recursively
180 ANTLR_USE_NAMESPACE(std)vector<RefAST> BaseAST::findAllPartial(RefAST target) argument
185 if (target)
186 doWorkForFindAll(roots,target,tru
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Dnaptr_35.c171 RETERR(uint16_tobuffer(token.value.as_ulong, target));
180 RETERR(uint16_tobuffer(token.value.as_ulong, target));
187 RETTOK(txt_fromtext(&token.value.as_textregion, target));
194 RETTOK(txt_fromtext(&token.value.as_textregion, target));
199 regex = isc_buffer_used(target);
202 RETTOK(txt_fromtext(&token.value.as_textregion, target));
213 RETTOK(dns_name_fromtext(&name, &buffer, origin, options, target));
241 RETERR(str_totext(buf, target));
242 RETERR(str_totext(" ", target));
250 RETERR(str_totext(buf, target));
[all...]
H A Dpx_26.c49 RETERR(uint16_tobuffer(token.value.as_ulong, target));
59 RETTOK(dns_name_fromtext(&name, &buffer, origin, options, target));
69 RETTOK(dns_name_fromtext(&name, &buffer, origin, options, target));
96 RETERR(str_totext(buf, target));
97 RETERR(str_totext(" ", target));
105 RETERR(dns_name_totext(&prefix, sub, target));
106 RETERR(str_totext(" ", target));
113 return(dns_name_totext(&prefix, sub, target));
137 RETERR(mem_tobuffer(target, sregion.base, 2));
143 RETERR(dns_name_fromwire(&name, source, dctx, options, target));
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dttl.c53 isc_boolean_t space, isc_buffer_t *target)
68 isc_buffer_availableregion(target, &region);
72 isc_buffer_add(target, len);
81 dns_ttl_totext(isc_uint32_t src, isc_boolean_t verbose, isc_buffer_t *target) { argument
93 RETERR(ttlfmt(weeks, "week", verbose, ISC_TF(x > 0), target));
97 RETERR(ttlfmt(days, "day", verbose, ISC_TF(x > 0), target));
101 RETERR(ttlfmt(hours, "hour", verbose, ISC_TF(x > 0), target));
105 RETERR(ttlfmt(mins, "minute", verbose, ISC_TF(x > 0), target));
110 RETERR(ttlfmt(secs, "second", verbose, ISC_TF(x > 0), target));
128 isc_buffer_usedregion(target,
52 ttlfmt(unsigned int t, const char *s, isc_boolean_t verbose, isc_boolean_t space, isc_buffer_t *target) argument
[all...]
H A Dname.c891 dns_name_t *target)
898 * Make 'target' refer to the 'n' labels including and following
903 REQUIRE(VALID_NAME(target));
906 REQUIRE(BINDABLE(target));
920 target->ndata = &source->ndata[firstoffset];
921 target->length = endoffset - firstoffset;
925 target->attributes |= DNS_NAMEATTR_ABSOLUTE;
927 target->attributes &= ~DNS_NAMEATTR_ABSOLUTE;
929 target->labels = n;
932 * If source and target ar
889 dns_name_getlabelsequence(const dns_name_t *source, unsigned int first, unsigned int n, dns_name_t *target) argument
942 dns_name_clone(const dns_name_t *source, dns_name_t *target) argument
1023 dns_name_fromtext(dns_name_t *name, isc_buffer_t *source, const dns_name_t *origin, unsigned int options, isc_buffer_t *target) argument
1317 dns_name_totext(dns_name_t *name, isc_boolean_t omit_final_dot, isc_buffer_t *target) argument
1328 dns_name_toprincipal(dns_name_t *name, isc_buffer_t *target) argument
1333 dns_name_totext2(dns_name_t *name, unsigned int options, isc_buffer_t *target) argument
1509 dns_name_tofilenametext(dns_name_t *name, isc_boolean_t omit_final_dot, isc_buffer_t *target) argument
1619 dns_name_downcase(dns_name_t *source, dns_name_t *name, isc_buffer_t *target) argument
1733 dns_name_fromwire(dns_name_t *name, isc_buffer_t *source, dns_decompress_t *dctx, unsigned int options, isc_buffer_t *target) argument
1912 dns_name_towire(const dns_name_t *name, dns_compress_t *cctx, isc_buffer_t *target) argument
1990 dns_name_concatenate(dns_name_t *prefix, dns_name_t *suffix, dns_name_t *name, isc_buffer_t *target) argument
2129 dns_name_dup(const dns_name_t *source, isc_mem_t *mctx, dns_name_t *target) argument
2169 dns_name_dupwithoffsets(dns_name_t *source, isc_mem_t *mctx, dns_name_t *target) argument
2361 dns_name_tostring(dns_name_t *name, char **target, isc_mem_t *mctx) argument
2389 dns_name_fromstring(dns_name_t *target, const char *src, unsigned int options, isc_mem_t *mctx) argument
2396 dns_name_fromstring2(dns_name_t *target, const char *src, const dns_name_t *origin, unsigned int options, isc_mem_t *mctx) argument
2426 dns_name_copy(dns_name_t *source, dns_name_t *dest, isc_buffer_t *target) argument
[all...]
/macosx-10.10/ppp-786.1.1/Controller/
H A Dreachability.c17 reachability_target_dispose(SCNetworkReachabilityRef target) argument
20 SCNetworkReachabilitySetCallback(target, NULL, NULL);
21 SCNetworkReachabilitySetDispatchQueue(target, NULL);
22 CFRelease(target);
27 remote_address_reachability_callback(SCNetworkReachabilityRef target, SCNetworkReachabilityFlags flags, void *info) argument
32 CFRetain(target);
35 SCNetworkReachabilityGetFlags(target, &flags);
36 reach_if_index = SCNetworkReachabilityGetInterfaceIndex(target);
40 if (serv != NULL && serv->remote_address_reachability == target) {
45 CFRelease(target);
[all...]
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclFCmd.c117 Tcl_Obj *target;
127 " ?options? source ?source ...? target\"", NULL);
132 * If target doesn't exist or isn't a directory, try the copy/rename.
133 * More than 2 arguments is only valid if the target is an existing
137 target = objv[objc - 1];
138 if (Tcl_FSConvertToPathType(interp, target) != TCL_OK) {
145 * Call Tcl_FSStat() so that if target is a symlink that points to a
150 if ((Tcl_FSStat(target, &statBuf) != 0) || !S_ISDIR(statBuf.st_mode)) {
155 (copyFlag ? "copying" : "renaming"), ": target \"",
156 TclGetString(target), "\" i
114 Tcl_Obj *target; local
228 Tcl_Obj *target = NULL; local
473 CopyRenameOneFile( Tcl_Interp *interp, Tcl_Obj *source, Tcl_Obj *target, int copyFlag, int force) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dccolltst.c86 void reportCResult( const UChar source[], const UChar target[], argument
101 log_err("Compare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
107 log_err("incCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
113 log_err("KeyCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
119 log_err("difference between sortkey and compare result for (%s , %s) Keys: %s compare %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
H A Dccurrtst.c102 UChar source[2], target[2]; local
125 u_strcpy(target, currency[j]);
140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target));
148 sortklen=ucol_getSortKey(c, target, u_strlen(target), NULL, 0);
150 ucol_getSortKey(c, target, u_strlen(target), sortKey2, sortklen+1);
157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult );
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventServiceUserClient.h59 static IOReturn _open( IOHIDEventServiceUserClient * target,
63 static IOReturn _close( IOHIDEventServiceUserClient * target,
68 IOHIDEventServiceUserClient * target,
73 IOHIDEventServiceUserClient * target,
98 OSObject * target,
/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/generic/
H A Dnsec3param_51.c63 RETERR(uint8_tobuffer(hashalg, target));
71 RETERR(uint8_tobuffer(flags, target));
78 RETERR(uint16_tobuffer(token.value.as_ulong, target));
86 RETERR(uint8_tobuffer(0, target));
88 RETERR(uint8_tobuffer(strlen(DNS_AS_STR(token)) / 2, target));
89 RETERR(isc_hex_decodestring(DNS_AS_STR(token), target));
121 RETERR(str_totext(buf, target));
124 RETERR(str_totext(buf, target));
127 RETERR(str_totext(buf, target));
136 RETERR(isc_hex_totext(&sr, 1, "", target));
[all...]
H A Ddlv_32769.c53 RETERR(uint16_tobuffer(token.value.as_ulong, target));
62 RETERR(uint8_tobuffer(token.value.as_ulong, target));
71 RETERR(uint8_tobuffer(token.value.as_ulong, target));
91 return (isc_hex_tobuffer(lexer, target, -1));
113 RETERR(str_totext(buf, target));
121 RETERR(str_totext(buf, target));
129 RETERR(str_totext(buf, target));
135 RETERR(str_totext(" (", target));
136 RETERR(str_totext(tctx->linebreak, target));
137 RETERR(isc_hex_totext(&sr, tctx->width - 2, tctx->linebreak, target));
[all...]
H A Dds_43.c54 RETERR(uint16_tobuffer(token.value.as_ulong, target));
62 RETERR(mem_tobuffer(target, &c, 1));
71 RETERR(uint8_tobuffer(token.value.as_ulong, target));
91 return (isc_hex_tobuffer(lexer, target, length));
113 RETERR(str_totext(buf, target));
121 RETERR(str_totext(buf, target));
129 RETERR(str_totext(buf, target));
135 RETERR(str_totext(" (", target));
136 RETERR(str_totext(tctx->linebreak, target));
137 RETERR(isc_hex_totext(&sr, tctx->width - 2, tctx->linebreak, target));
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclFCmd.c118 Tcl_Obj *target;
128 " ?options? source ?source ...? target\"",
134 * If target doesn't exist or isn't a directory, try the copy/rename.
135 * More than 2 arguments is only valid if the target is an existing
139 target = objv[objc - 1];
140 if (Tcl_FSConvertToPathType(interp, target) != TCL_OK) {
147 * Call Tcl_FSStat() so that if target is a symlink that points to a
152 if ((Tcl_FSStat(target, &statBuf) != 0) || !S_ISDIR(statBuf.st_mode)) {
157 ((copyFlag) ? "copying" : "renaming"), ": target \"",
158 Tcl_GetString(target), "\" i
115 Tcl_Obj *target; local
231 Tcl_Obj *target = NULL; local
[all...]
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGTRefElement.cpp71 void attach(PassRefPtr<Element> target);
92 void SVGTRefTargetEventListener::attach(PassRefPtr<Element> target) argument
95 ASSERT(target.get());
96 ASSERT(target->inDocument());
98 target->addEventListener(eventNames().DOMSubtreeModifiedEvent, this, false);
99 target->addEventListener(eventNames().DOMNodeRemovedFromDocumentEvent, this, false);
100 m_target = target;
124 if (event->type() == eventNames().DOMSubtreeModifiedEvent && &m_trefElement != event->target())
143 void SVGTRefElement::updateReferencedText(Element* target) argument
146 if (target)
261 RefPtr<Element> target = SVGURIReference::targetElementFromIRIString(href(), document(), &id); local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/doc/
H A Ddoc.tcl114 set target [file rootname [file tail $f]].dvi
115 if {[file exists $target]
116 && [file mtime $target] > [file mtime $f]} {
133 set target [file rootname [file tail $f]].ps
134 if {[file exists $target]
135 && [file mtime $target] > [file mtime $f]} {
140 exec dvips -o $target $f >@ stdout 2>@ stderr
152 set target [file rootname [file tail $f]].pdf
153 if {[file exists $target]
154 && [file mtime $target] > [fil
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/support/devel/sak/doc/
H A Ddoc.tcl114 set target [file rootname [file tail $f]].dvi
115 if {[file exists $target]
116 && [file mtime $target] > [file mtime $f]} {
133 set target [file rootname [file tail $f]].ps
134 if {[file exists $target]
135 && [file mtime $target] > [file mtime $f]} {
140 exec dvips -o $target $f >@ stdout 2>@ stderr
152 set target [file rootname [file tail $f]].pdf
153 if {[file exists $target]
154 && [file mtime $target] > [fil
[all...]
/macosx-10.10/security_systemkeychain-55202/src/
H A Dspctl.cpp99 static void assess(const char *target);
100 static void addAuthority(const char *target);
101 static void removeAuthority(const char *target);
102 static void enableAuthority(const char *target);
103 static void disableAuthority(const char *target);
104 static void listAuthority(const char *target);
349 const char *target = argv[optind]; local
353 assess(target);
356 addAuthority(target);
359 removeAuthority(target);
404 assess(const char *target) argument
472 updateOperation(const char *target, CFMutableDictionaryRef context, CFStringRef operation) argument
553 addAuthority(const char *target) argument
561 removeAuthority(const char *target) argument
568 enableAuthority(const char *target) argument
575 disableAuthority(const char *target) argument
582 listAuthority(const char *target) argument
[all...]

Completed in 296 milliseconds

1234567891011>>