Searched refs:target (Results 101 - 125 of 2227) sorted by relevance

1234567891011>>

/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/generic/
H A Dtkey_249.c54 RETTOK(dns_name_fromtext(&name, &buffer, origin, options, target));
62 RETERR(uint32_tobuffer(token.value.as_ulong, target));
69 RETERR(uint32_tobuffer(token.value.as_ulong, target));
78 RETERR(uint16_tobuffer(token.value.as_ulong, target));
95 RETERR(uint16_tobuffer(rcode, target));
104 RETERR(uint16_tobuffer(token.value.as_ulong, target));
109 RETERR(isc_base64_tobuffer(lexer, target, (int)token.value.as_ulong));
118 RETERR(uint16_tobuffer(token.value.as_ulong, target));
123 return (isc_base64_tobuffer(lexer, target, (int)token.value.as_ulong));
147 RETERR(dns_name_totext(&prefix, sub, target));
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducnv_u16.c52 char *target; local
73 &pArgs->target, pArgs->targetLimit,
79 target=pArgs->target;
80 if(target >= pArgs->targetLimit) {
85 targetCapacity=(uint32_t)(pArgs->targetLimit-target);
95 target[0]=(uint8_t)(c>>8);
96 target[1]=(uint8_t)c;
97 target[2]=(uint8_t)(trail>>8);
98 target[
256 UChar *target; local
651 char *target; local
855 UChar *target; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DHandlerInfo.h36 uint32_t target; member in struct:JSC::HandlerInfo
/macosx-10.10/JavaScriptCore-7600.1.17/bytecompiler/
H A DStaticPropertyAnalysis.h38 static PassRefPtr<StaticPropertyAnalysis> create(Vector<UnlinkedInstruction, 0, UnsafeVectorOverflow>* instructions, unsigned target) argument
40 return adoptRef(new StaticPropertyAnalysis(instructions, target));
53 StaticPropertyAnalysis(Vector<UnlinkedInstruction, 0, UnsafeVectorOverflow>* instructions, unsigned target) argument
55 , m_target(target)
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DRegisterPreservationWrapperGenerator.h42 MacroAssemblerCodeRef generateRegisterPreservationWrapper(VM&, ExecutableBase*, MacroAssemblerCodePtr target);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dldap_rb_stats_script.d44 ldap_rb_stats$target:::count
50 ldap_rb_stats$target:::count
/macosx-10.10/bind9-45.101/bind9/bin/named/include/named/
H A Dlistenlist.h65 dns_acl_t *acl, ns_listenelt_t **target);
77 ns_listenlist_create(isc_mem_t *mctx, ns_listenlist_t **target);
83 ns_listenlist_attach(ns_listenlist_t *source, ns_listenlist_t **target);
85 * Attach '*target' to '*source'.
96 isc_boolean_t enabled, ns_listenlist_t **target);
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Dopcode.h31 isc_result_t dns_opcode_totext(dns_opcode_t opcode, isc_buffer_t *target);
33 * Put a textual representation of error 'opcode' into 'target'.
38 *\li 'target' is a valid text buffer.
42 * The used space in 'target' is updated.
46 *\li #ISC_R_NOSPACE target buffer is too small
H A Drcode.h45 isc_result_t dns_rcode_totext(dns_rcode_t rcode, isc_buffer_t *target);
47 * Put a textual representation of error 'rcode' into 'target'.
52 *\li 'target' is a valid text buffer.
56 * The used space in 'target' is updated.
60 *\li #ISC_R_NOSPACE target buffer is too small
78 isc_result_t dns_tsigrcode_totext(dns_rcode_t rcode, isc_buffer_t *target);
80 * Put a textual representation of TSIG/TKEY error 'rcode' into 'target'.
85 *\li 'target' is a valid text buffer.
89 * The used space in 'target' is updated.
93 *\li #ISC_R_NOSPACE target buffe
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Dsrv_33.h34 dns_name_t target; member in struct:dns_rdata_in_srv
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djinclude.h61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dfslog.h37 /* Log information about external modification of a target process */
38 void fslog_extmod_msgtracer(proc_t caller, proc_t target);
/macosx-10.10/xnu-2782.1.97/libsyscall/mach/
H A Dmach_vm.c48 mach_port_name_t target,
55 rv = _kernelrpc_mach_vm_allocate_trap(target, address, size, flags);
58 rv = _kernelrpc_mach_vm_allocate(target, address, size, flags);
62 __syscall_logger(stack_logging_type_vm_allocate | userTagFlags, (uintptr_t)target, (uintptr_t)size, 0, (uintptr_t)*address, 0);
70 mach_port_name_t target,
76 rv = _kernelrpc_mach_vm_deallocate_trap(target, address, size);
79 rv = _kernelrpc_mach_vm_deallocate(target, address, size);
82 __syscall_logger(stack_logging_type_vm_deallocate, (uintptr_t)target, (uintptr_t)address, (uintptr_t)size, 0, 0);
159 mach_port_name_t target,
175 rv = _kernelrpc_mach_vm_map_trap(target, addres
47 mach_vm_allocate( mach_port_name_t target, mach_vm_address_t *address, mach_vm_size_t size, int flags) argument
69 mach_vm_deallocate( mach_port_name_t target, mach_vm_address_t address, mach_vm_size_t size) argument
158 mach_vm_map( mach_port_name_t target, mach_vm_address_t *address, mach_vm_size_t size, mach_vm_offset_t mask, int flags, mem_entry_name_port_t object, memory_object_offset_t offset, boolean_t copy, vm_prot_t cur_protection, vm_prot_t max_protection, vm_inherit_t inheritance) argument
192 mach_vm_remap( mach_port_name_t target, mach_vm_address_t *address, mach_vm_size_t size, mach_vm_offset_t mask, int flags, mach_port_name_t src_task, mach_vm_address_t src_address, boolean_t copy, vm_prot_t *cur_protection, vm_prot_t *max_protection, vm_inherit_t inheritance) argument
221 mach_vm_read( mach_port_name_t target, mach_vm_address_t address, mach_vm_size_t size, vm_offset_t *data, mach_msg_type_number_t *dataCnt) argument
243 vm_map( mach_port_name_t target, vm_address_t *address, vm_size_t size, vm_offset_t mask, int flags, mem_entry_name_port_t object, vm_offset_t offset, boolean_t copy, vm_prot_t cur_protection, vm_prot_t max_protection, vm_inherit_t inheritance) argument
271 vm_remap( mach_port_name_t target, vm_address_t *address, vm_size_t size, vm_offset_t mask, int flags, mach_port_name_t src_task, vm_address_t src_address, boolean_t copy, vm_prot_t *cur_protection, vm_prot_t *max_protection, vm_inherit_t inheritance) argument
300 vm_read( mach_port_name_t target, vm_address_t address, vm_size_t size, vm_offset_t *data, mach_msg_type_number_t *dataCnt) argument
[all...]
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dmk_tarball21 target=$here/libMicro.tar
26 tar cvf $target $dirname
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dbitstring.c82 isc_bitstring_t *target, unsigned int tbitpos,
89 * the 'n' bits of 'target' starting at 'tbitpos'.
93 REQUIRE(VALID_BITSTRING(target));
94 REQUIRE(source->lsb0 == target->lsb0);
103 if (target->lsb0) {
104 REQUIRE(tbitpos <= target->length);
105 tbitpos = PADDED(target->size) - tbitpos;
109 REQUIRE(tlast <= target->size);
111 if (tlast > target->length)
112 target
81 isc_bitstring_copy(isc_bitstring_t *source, unsigned int sbitpos, isc_bitstring_t *target, unsigned int tbitpos, unsigned int n) argument
[all...]
/macosx-10.10/ntp-92/lib/isc/
H A Dbitstring.c82 isc_bitstring_t *target, unsigned int tbitpos,
89 * the 'n' bits of 'target' starting at 'tbitpos'.
93 REQUIRE(VALID_BITSTRING(target));
94 REQUIRE(source->lsb0 == target->lsb0);
103 if (target->lsb0) {
104 REQUIRE(tbitpos <= target->length);
105 tbitpos = PADDED(target->size) - tbitpos;
109 REQUIRE(tlast <= target->size);
111 if (tlast > target->length)
112 target
81 isc_bitstring_copy(isc_bitstring_t *source, unsigned int sbitpos, isc_bitstring_t *target, unsigned int tbitpos, unsigned int n) argument
[all...]
/macosx-10.10/Heimdal-398.1.2/packages/mac/
H A Dmake-export.sh6 target=$2
14 echo "$name $source $target"
107 if cmp -s "$tmp" "$target" ; then
110 mv "$tmp" "$target"
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbase64.h52 int b64_ntop(u_char const *src, size_t srclength, char *target,
60 int b64_pton(char const *src, u_char *target, size_t targsize);
/macosx-10.10/Security-57031.1.35/Security/include/securityd_client/
H A Dsec_xdr_array.c113 uint8_t *target = addrp ? *addrp : NULL; local
123 if (target == NULL) {
128 if (!sec_mem_alloc(xdrs, nodesize, &target))
130 if (!target)
131 target = &obj[0];
133 *addrp = target;
150 stat = (*elproc)(xdrs, target, 0);
152 target += elsize;
/macosx-10.10/Security-57031.1.35/Security/libsecurityd/lib/
H A Dsec_xdr_array.c113 uint8_t *target = addrp ? *addrp : NULL; local
123 if (target == NULL) {
128 if (!sec_mem_alloc(xdrs, nodesize, &target))
130 if (!target)
131 target = &obj[0];
133 *addrp = target;
150 stat = (*elproc)(xdrs, target, 0);
152 target += elsize;
/macosx-10.10/WebCore-7600.1.25/bindings/scripts/test/GObject/
H A DWebKitDOMTestNode.cpp59 static gboolean webkit_dom_test_node_dispatch_event(WebKitDOMEventTarget* target, WebKitDOMEvent* event, GError** error) argument
62 WebCore::TestNode* coreTarget = static_cast<WebCore::TestNode*>(WEBKIT_DOM_OBJECT(target)->coreObject);
73 static gboolean webkit_dom_test_node_add_event_listener(WebKitDOMEventTarget* target, const char* eventName, GClosure* handler, gboolean useCapture) argument
75 WebCore::TestNode* coreTarget = static_cast<WebCore::TestNode*>(WEBKIT_DOM_OBJECT(target)->coreObject);
76 return WebCore::GObjectEventListener::addEventListener(G_OBJECT(target), coreTarget, eventName, handler, useCapture);
79 static gboolean webkit_dom_test_node_remove_event_listener(WebKitDOMEventTarget* target, const char* eventName, GClosure* handler, gboolean useCapture) argument
81 WebCore::TestNode* coreTarget = static_cast<WebCore::TestNode*>(WEBKIT_DOM_OBJECT(target)->coreObject);
82 return WebCore::GObjectEventListener::removeEventListener(G_OBJECT(target), coreTarget, eventName, handler, useCapture);
/macosx-10.10/bind9-45.101/bind9/bin/tests/
H A Dmaster_test.c40 isc_buffer_t target; local
45 isc_buffer_init(&target, buf, 64*1024);
47 &target);
49 fprintf(stdout, "%.*s\n", (int)target.used,
50 (char*)target.base);
63 isc_buffer_t target; local
75 isc_buffer_init(&target, name_buf, 255);
78 0, &target);
/macosx-10.10/ruby-106/ruby/ext/psych/
H A Dpsych_yaml_tree.c6 * call-seq: private_iv_get(target, prop)
8 * Get the private instance variable +prop+ from +target+
10 static VALUE private_iv_get(VALUE self, VALUE target, VALUE prop) argument
12 return rb_attr_get(target, rb_intern(StringValuePtr(prop)));
/macosx-10.10/JavaScriptCore-7600.1.17/tests/stress/
H A Dproxy-inline-cache.js3 // proxy -> target -> x
5 var target = {x:42};
6 var proxy = createProxy(target);
19 // proxy -> target -> proto -> x
22 var target = Object.create(proto);
23 var proxy = createProxy(target);
36 // base -> proto (proxy) -> target -> x
38 var target = {x:42};
39 var protoProxy = createProxy(target);
53 // proxy -> target
[all...]
/macosx-10.10/OpenSSL098-52/src/util/pl/
H A DOS2-EMX.pl84 local($obj,$target,$name,$shlib)=@_;
87 $target =~ s/\//$o/g if $o ne '/';
88 $target="$target";
91 $ret.="$target: \$(${Name}OBJ)\n";
94 $ret.="\t\$(RM) $target\n";
95 $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n";
96 $ret.="\t\$(RANLIB) $target\n\n";
100 local($ex)=($target =~ /O_SSL/)?' $(L_CRYPTO)':'';
102 $ret.="\t\$(LINK) \$(SHLIB_CFLAGS) \$(MLFLAGS) $efile$target \
[all...]

Completed in 198 milliseconds

1234567891011>>