Searched refs:props (Results 1 - 25 of 200) sorted by relevance

12345678

/macosx-10.10/ICU-531.30/icuSources/samples/props/
H A DMakefile12 TARGET=props
15 OBJECTS=props.o
/macosx-10.10/IOKitUser-1050.1.21/
H A Dalloccount.c51 CFDictionaryRef props; local
65 (CFTypeRef *) &props,
68 assert( CFDictionaryGetTypeID() == CFGetTypeID(props));
70 props = (CFDictionaryRef)
71 CFDictionaryGetValue( props, CFSTR(kIOKitDiagnosticsKey));
72 assert( props );
73 assert( CFDictionaryGetTypeID() == CFGetTypeID(props));
75 printNumber(props, CFSTR("Instance allocation"));
76 printNumber(props, CFSTR("Container allocation"));
77 printNumber(props, CFST
[all...]
H A Dclasscount.c40 CFDictionaryRef props; local
63 (CFTypeRef *)&props,
66 assert( CFDictionaryGetTypeID() == CFGetTypeID(props));
69 CFDictionaryGetValue( props, CFSTR(kIOKitDiagnosticsKey));
94 CFRelease(props);
/macosx-10.10/postfix-255/postfix/src/tls/
H A Dtls_client.c274 TLS_APPL_STATE *tls_client_init(const TLS_CLIENT_INIT_PROPS *props) argument
286 log_mask = tls_log_mask(props->log_param, props->log_level);
326 if (!tls_validate_digest(props->mdalg)) {
360 SSL_CTX_set_verify_depth(client_ctx, props->verifydepth + 1);
387 props->CAfile, props->CApath) < 0) {
413 props->cert_file,
414 props->key_file,
415 props
506 match_servername(const char *certid, const TLS_CLIENT_START_PROPS *props) argument
574 verify_extract_name(TLS_SESS_STATE *TLScontext, X509 *peercert, const TLS_CLIENT_START_PROPS *props) argument
727 verify_extract_print(TLS_SESS_STATE *TLScontext, X509 *peercert, const TLS_CLIENT_START_PROPS *props) argument
753 tls_client_start(const TLS_CLIENT_START_PROPS *props) argument
[all...]
H A Dtls.h404 #define TLS_CLIENT_INIT(props, a1, a2, a3, a4, a5, a6, a7, a8, a9, \
406 tls_client_init((((props)->a1), ((props)->a2), ((props)->a3), \
407 ((props)->a4), ((props)->a5), ((props)->a6), ((props)->a7), \
408 ((props)->a8), ((props)
[all...]
H A Dtls_server.c9 /* TLS_APPL_STATE *tls_server_init(props)
10 /* const TLS_SERVER_INIT_PROPS *props;
12 /* TLS_SESS_STATE *tls_server_start(props)
13 /* const TLS_SERVER_START_PROPS *props;
328 TLS_APPL_STATE *tls_server_init(const TLS_SERVER_INIT_PROPS *props) argument
343 log_mask = tls_log_mask(props->log_param, props->log_level);
369 protomask = tls_protocol_mask(props->protocols);
373 props->protocols);
394 if (!tls_validate_digest(props
665 tls_server_start(const TLS_SERVER_START_PROPS *props) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Duchar.c58 uint32_t props; local
59 GET_PROPS(c, props);
60 return (int8_t)GET_CATEGORY(props);
98 uint32_t props; local
99 GET_PROPS(c, props);
100 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER);
106 uint32_t props; local
107 GET_PROPS(c, props);
108 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER);
114 uint32_t props; local
122 uint32_t props; local
129 uint32_t props; local
146 uint32_t props; local
159 uint32_t props; local
176 uint32_t props; local
184 uint32_t props; local
192 uint32_t props; local
213 uint32_t props; local
220 uint32_t props; local
228 uint32_t props; local
243 uint32_t props; local
257 uint32_t props; local
270 uint32_t props; local
281 uint32_t props; local
298 uint32_t props; local
309 uint32_t props; local
318 uint32_t props; local
327 uint32_t props; local
344 uint32_t props; local
353 uint32_t props; local
363 uint32_t props; local
377 uint32_t props; local
390 uint32_t props; local
514 uint32_t props; local
[all...]
H A Dubidi_props.h121 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK)
122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
125 # define UBIDI_GET_MIRROR_DELTA(props) ((int16_t)(props)>>UBIDI_MIRROR_DELTA_SHIFT)
127 # define UBIDI_GET_MIRROR_DELTA(props) (int16_t)(((props)&0x8000) ? (((props)>>UBIDI_MIRROR_DELTA_SHIFT)|0xe000) : ((props)>>UBIDI_MIRROR_DELTA_SHIF
[all...]
H A Dubidi_props.c133 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
134 return (UCharDirection)UBIDI_GET_CLASS(props);
139 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
140 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT);
144 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) { argument
145 int32_t delta=UBIDI_GET_MIRROR_DELTA(props);
177 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
178 return getMirror(bdp, c, props);
183 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
184 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIF
189 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
195 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
214 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
220 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
[all...]
H A Ducase.cpp86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
88 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION)
136 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
137 if(!PROPS_HAS_EXCEPTION(props)) {
138 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) {
139 c+=UCASE_GET_DELTA(props);
142 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
153 uint16_t props local
170 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
201 uint16_t props; local
433 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
440 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
447 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
463 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
808 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
952 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1098 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1162 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
[all...]
/macosx-10.10/emacs-93/emacs/src/
H A Dxsmfns.c196 SmProp *props[NR_PROPS]; local
207 props[props_idx] = &prop_ptr[props_idx];
208 props[props_idx]->name = SmCloneCommand;
209 props[props_idx]->type = SmLISTofARRAY8;
210 props[props_idx]->num_vals = 1;
211 props[props_idx]->vals = &values[val_idx++];
212 props[props_idx]->vals[0].length = strlen (emacs_program);
213 props[props_idx]->vals[0].value = emacs_program;
217 props[props_idx] = &prop_ptr[props_idx];
218 props[props_id
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dppucd.cpp205 UniProps *props; local
222 props=&defaultProps;
227 props=&blockProps;
246 props=&cpProps;
253 props->start=start;
254 props->end=end;
256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; }
258 return props;
272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, argument
314 props
[all...]
/macosx-10.10/Libc-1044.1.2/locale/FreeBSD/
H A Dwctype.c44 } props[] = { local
66 while (props[i].name != NULL && strcmp(props[i].name, property) != 0)
69 if (props[i].mask)
70 return (props[i].mask);
/macosx-10.10/bless-103/test/
H A Dtestdadisk.c37 CFDictionaryRef props = NULL; local
68 props = DADiskCopyDescription(disk);
69 if(props == NULL) {
76 TAOCFPrettyPrint(props);
82 CFRelease(props);
H A Dtestofproperties.c32 CFMutableDictionaryRef props = NULL; local
53 ret = IORegistryEntryCreateCFProperties(entry, &props,
62 TAOCFPrettyPrint(props);
79 CFRelease(props);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/stringprep/
H A Dstringprep.tcl26 array set props [list -mapping "" \
46 set props(-mapping) $val
51 set props(-normalization) $val
87 set props(-prohibited) $mask
95 lappend props(-prohibitedList) [expr {$uc}]
104 set props(-prohibitedCommand) $val
108 set props(-prohibitedBidi) 1
110 set props(-prohibitedBidi) 0
119 set profiles($profile) [array get props]
172 array set props
[all...]
/macosx-10.10/bless-103/libbless/Misc/
H A DBLGetPreBootEnvironmentType.c55 CFMutableDictionaryRef props = NULL; local
99 ret = IORegistryEntryCreateCFProperties(entry, &props,
104 CFRelease(props);
110 model = CFDictionaryGetValue(props, CFSTR("model"));
113 CFRelease(props);
122 CFRelease(props);
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/java/CyrusSasl/
H A DSasl.java22 property from props to load in a factory and try to create a
54 props The possibly null additional configuration
64 Hashtable props,
76 props,
92 Hashtable props,
104 props,
60 createSaslClient(String[] mechanisms, String authorizationID, String protocol, String serverName, Hashtable props, javax.security.auth.callback.CallbackHandler cbh) argument
89 CreateSaslServer(String mechanism, String protocol, String serverName, Hashtable props, javax.security.auth.callback.CallbackHandler cbh) argument
H A DSaslClientFactory.java12 Hashtable props,
8 createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Hashtable props, javax.security.auth.callback.CallbackHandler cbh) argument
H A DSaslServerFactory.java11 Hashtable props,
8 createSaslServer(String mechanism, String protocol, String serverName, Hashtable props, javax.security.auth.callback.CallbackHandler cbh) argument
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/python/
H A Dmetakit.py32 props = view.structure()
33 for prop in props:
42 for c in range(len(props)):
43 attr = getattr(row, props[c].name, None)
55 for c in range(len(props)):
58 print '', string.ljust(props[c].name, widths[c]),
62 for c in range(len(props)):
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_propertiesforclass.py10 props = objc.propertiesForClass(OCPropertyDefinitions)
11 self.assertIsInstance(props, list)
13 p = self.get_prop(props, "prop1")
23 p = self.get_prop(props, "prop2")
32 p = self.get_prop(props, "prop3")
41 p = self.get_prop(props, "prop4")
50 p = self.get_prop(props, "prop5")
59 p = self.get_prop(props, "prop6")
68 p = self.get_prop(props, "prop7")
77 p = self.get_prop(props, "prop
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_propertiesforclass.py10 props = objc.propertiesForClass(OCPropertyDefinitions)
11 self.assertIsInstance(props, list)
13 p = self.get_prop(props, "prop1")
23 p = self.get_prop(props, "prop2")
32 p = self.get_prop(props, "prop3")
41 p = self.get_prop(props, "prop4")
50 p = self.get_prop(props, "prop5")
59 p = self.get_prop(props, "prop6")
68 p = self.get_prop(props, "prop7")
77 p = self.get_prop(props, "prop
[all...]
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/java/Test/
H A Dtestserver.java33 Hashtable props = new Hashtable();
34 props.put("javax.security.sasl.encryption.minimum",String.valueOf(minssf));
35 props.put("javax.security.sasl.encryption.maximum",String.valueOf(maxssf));
36 props.put("javax.security.sasl.ip.local",s.getLocalAddress().getHostName());
37 props.put("javax.security.sasl.ip.remote",
47 props,
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/
H A Dbeep.tcl170 catch { unset props }
171 array set props $sessions($mixerT)
173 if { ($props(host) != $URL(host)) \
174 || ($props(resource) != $URL(path)) \
175 || ($props(signature) != $signature) } {
185 incr props(refcnt)
186 set sessions($mixerT) [array get props]
188 "$procName using session $mixerT, refcnt now $props(refcnt)"
191 set procvar(channelT) $props(channelT)
192 set procvar(features) $props(feature
[all...]

Completed in 235 milliseconds

12345678