Searched refs:query (Results 1 - 25 of 912) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/Net-DNS/contrib/
H A Dloclist.pl33 $query = $res->query($_);
35 if (defined ($query)) {
36 foreach $ans ($query->answer) {
47 $query = $res->query($_,"LOC");
49 if (defined ($query)) { # then we got an answer of some sort
50 foreach $ans ($query->answer) {
59 $query = $res->query(
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DRetrieve.pm14 my $query;
16 $query = { %{$_[0]} };
19 $query = {};
20 @{$query}{@cols} = @_;
23 $query = {@_};
26 $query = $self->_build_query($query);
27 $self->find($query);
32 my $query = ref $_[0] eq 'HASH' ? shift : {@_};
34 $query
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DMediaQueryListListener.cpp30 void MediaQueryListListener::queryChanged(ScriptState* state, MediaQueryList* query) argument
33 callback.appendArgument(toJS(state, deprecatedGlobalObjectForPrototype(state), query));
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/
H A Dgoogle.pl16 my $query = shift || 'soap';
21 $key, $query, 0, 10, 'false', '', 'false', '', 'latin1', 'latin1');
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/
H A Dgoogle.pl16 my $query = shift || 'soap';
23 $key, $query, 0, 10, 'false', '', 'false', '', 'latin1', 'latin1');
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/
H A Dgoogle.pl16 my $query = shift || 'soap';
23 $key, $query, 0, 10, 'false', '', 'false', '', 'latin1', 'latin1');
/macosx-10.9.5/Security-55471.14.18/sec/Security/Regressions/secitem/
H A Dsi-30-keychain-upgrade.c60 CFDictionaryRef query = CFDictionaryCreateForCFTypes(0, kSecClass,kSecClassInternetPassword, NULL); local
62 is_status(SecItemCopyMatching(query, &results), errSecItemNotFound, "expected nothing got %@", results);
63 CFReleaseNull(query);
97 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL);
98 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
99 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("members.spamcop.net"));
100 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
101 CFDictionaryAddValue(query, kSecAttrPort, eighty);
102 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
103 CFDictionaryAddValue(query, kSecAttrAuthenticationTyp
[all...]
H A Dsi-31-keychain-unreadable.c25 CFDictionaryRef query = CFDictionaryCreate(0, &kSecClass, &kSecClassInternetPassword, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); local
27 is_status(SecItemCopyMatching(query, &results), errSecItemNotFound, "expected nothing got %@", results);
28 CFReleaseNull(query);
61 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL);
62 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
63 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("members.spamcop.net"));
64 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
65 CFDictionaryAddValue(query, kSecAttrPort, eighty);
66 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
67 CFDictionaryAddValue(query, kSecAttrAuthenticationTyp
[all...]
H A Dsi-33-keychain-backup.c41 CFDictionaryRef query; member in struct:test_persistent_s
87 p->query = CFDictionaryCreate(NULL, keys, values,
90 ok_status(SecItemCopyMatching(p->query, &results), "find internet password by attr");
109 ok_status(SecItemDelete(p->query), "delete internet password");
111 ok_status(!SecItemCopyMatching(p->query, &results),
184 ok_status(!SecItemCopyMatching(p->query, &results),
210 CFRelease(p->query);
219 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
220 CFDictionaryAddValue(query, kSecClass, kSecClassGenericPassword);
221 CFDictionaryAddValue(query, kSecAttrAccessGrou
226 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
235 CFMutableDictionaryRef query = test_create_lockdown_identity_query(); local
245 CFMutableDictionaryRef query = test_create_lockdown_identity_query(); local
251 CFMutableDictionaryRef query = test_create_lockdown_identity_query(); local
258 CFMutableDictionaryRef query = test_create_managedconfiguration_query(); local
268 CFMutableDictionaryRef query = test_create_managedconfiguration_query(); local
354 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
[all...]
H A Dsi-00-find-nothing.c26 CFDictionaryRef query = CFDictionaryCreate(NULL, keys, values,
29 is_status(SecItemCopyMatching(query, &results), errSecItemNotFound,
37 if (query) {
38 CFRelease(query);
39 query = NULL;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/mac/
H A DSecItemShimLibrary.mm37 static OSStatus shimSecItemCopyMatching(CFDictionaryRef query, CFTypeRef* result)
39 return secItemShimCallbacks.secItemCopyMatching(query, result);
42 static OSStatus shimSecItemAdd(CFDictionaryRef query, CFTypeRef* result)
44 return secItemShimCallbacks.secItemAdd(query, result);
47 static OSStatus shimSecItemUpdate(CFDictionaryRef query, CFDictionaryRef attributesToUpdate)
49 return secItemShimCallbacks.secItemUpdate(query, attributesToUpdate);
52 static OSStatus shimSecItemDelete(CFDictionaryRef query)
54 return secItemShimCallbacks.secItemDelete(query);
H A DSecItemShimLibrary.h31 OSStatus (*secItemCopyMatching)(CFDictionaryRef query, CFTypeRef *result);
33 OSStatus (*secItemUpdate)(CFDictionaryRef query, CFDictionaryRef attributesToUpdate);
34 OSStatus (*secItemDelete)(CFDictionaryRef query);
/macosx-10.9.5/cups-372.4/cups/cgi-bin/
H A Dsearch.c35 cgiCompileSearch(const char *query) /* I - Query string */ argument
42 const char *qptr, /* Pointer into query string */
47 char *lword; /* Last word in query */
50 DEBUG_printf(("cgiCompileSearch(query=\"%s\")\n", query));
56 if (!query)
68 * at 1024 bytes or 3 times the length of the query string, whichever
72 slen = strlen(query) * 3;
83 * Copy the query string to the regular expression, handling basic
88 qptr = query;
[all...]
/macosx-10.9.5/kext_tools-326.95.1/
H A DQEQuery.c27 * The internal query engine object definition.
31 /* queryRoot: the outermost query element, always an OR group
35 /* queryStack, queryStackTop: a lifo stack of query elements representing
53 /* The last error to happen with this query.
77 * Internal query element keys for the basic operators and such.
80 * "Or" groups are always explicit, except for the query root. "And" groups are
82 * query engine promotes the element preceding the "and" into the new "and"
102 QEQueryRef query,
106 CF_RETURNS_RETAINED CFMutableDictionaryRef _QEQueryYankElement(QEQueryRef query);
107 Boolean _QEQueryStackTopIsAndGroup(QEQueryRef query);
214 QEQueryFree(QEQueryRef query) argument
230 QEQueryEmptyParseDictionaries(QEQueryRef query) argument
243 QEQuerySetOperators(QEQueryRef query, CFStringRef andPredicate, CFStringRef orPredicate, CFStringRef notPredicate, CFStringRef groupStartPredicate, CFStringRef groupEndPredicate) argument
267 QEQuerySetParseCallbackForPredicate( QEQueryRef query, CFStringRef predicate, QEQueryParseCallback parseCallback) argument
294 QEQuerySetEvaluationCallbackForPredicate( QEQueryRef query, CFStringRef predicate, QEQueryEvaluationCallback evaluationCallback) argument
321 QEQuerySetSynonymForPredicate( QEQueryRef query, CFStringRef synonym, CFStringRef predicate) argument
338 QEQueryIsComplete(QEQueryRef query) argument
353 QEQueryLastError(QEQueryRef query) argument
364 QEQuerySetShortCircuits( QEQueryRef query, Boolean flag) argument
375 QEQueryGetShortCircuits(QEQueryRef query) argument
384 _QEQueryElementEvaluate( QEQueryRef query, CFDictionaryRef element, void * object) argument
478 QEQueryEvaluate( QEQueryRef query, void * object) argument
497 QEQueryAppendElementFromArgs( QEQueryRef query, int argc, char * const argv[], uint32_t * num_used) argument
625 QEQueryCreateElement( QEQueryRef query, CFStringRef predicate, CFArrayRef arguments, Boolean negated) argument
670 QEQueryAppendElement( QEQueryRef query, CFMutableDictionaryRef element) argument
702 QEQueryAppendAndOperator(QEQueryRef query) argument
732 QEQueryAppendOrOperator(QEQueryRef query) argument
759 QEQueryStartGroup( QEQueryRef query, Boolean negated) argument
770 _QEQueryStartGroup( QEQueryRef query, Boolean andFlag, Boolean negated) argument
800 QEQueryEndGroup(QEQueryRef query) argument
1089 QEQueryPrint(QEQueryRef query) argument
1150 _QEQueryYankElement(QEQueryRef query) argument
1174 _QEQueryStackTopIsAndGroup(QEQueryRef query) argument
1188 _QEQueryStackTopIsOrGroup(QEQueryRef query) argument
1202 _QEQueryStackTopHasCount(QEQueryRef query, CFIndex count) argument
1218 _QEQueryPushGroup( QEQueryRef query, Boolean negated, Boolean andFlag) argument
1266 _QEQueryPopGroup(QEQueryRef query) argument
1290 _QEQueryPopGroupAndCoalesce( QEQueryRef query, Boolean onlyIfCanCoalesce) argument
1343 _QEQueryOperatorForToken( QEQueryRef query, CFStringRef token) argument
1353 _QEPredicateForString( QEQueryRef query, char * string) argument
1380 _QEQueryParseCallbackForPredicate( QEQueryRef query, CFStringRef predicate) argument
1404 _QEQueryEvaluationCallbackForPredicate( QEQueryRef query, CFStringRef predicate) argument
[all...]
H A DQEQuery.h55 * you want to handle, add elements to your query using one of the two methods
58 * QEQueryEvaluate() returns true if the query matches the object you provide,
61 * using that query engine instance if an error did occur.
73 * predicate, the query engine will just keep rolling along (and you might see a
83 * by the query engine as a whole; you should update this by the number of
87 * - A pointer to the query user data.
88 * - A pointer to the query's error code, which you should set to
110 * NOTE: If you get a reference to query element's predicate, and then set the
118 * You can forgo using parse callbacks if you want to build query elements
128 * result in an incorrectly-structures query (fo
[all...]
/macosx-10.9.5/CPANInternal-140/URI/t/
H A Dquery-param.t17 print "not " unless $u->query eq "a=1&b=2" || $u->query eq "b=2&a=1";
20 $u->query("a=1&b=2&a=3&b=4&a=5");
31 print "not " unless $u->query eq "a=11&b=2&a=12&b=4&a=13&a=14";
37 print "not " unless $u->query eq "a=11&b=2&b=4";
43 print "not " unless $u->query eq "b=2&b=4";
49 print "not " unless $u->query eq "b=2&b=4&a=1&a=3&a=5&b=6";
54 print "not " unless $u->query eq "b=2&b=4&b=6";
57 $u->query(undef);
61 print "not " unless $u->query e
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Spotlight/
H A DSpotlight.rb14 attr :query, true
18 @query = NSMetadataQuery.alloc.init
29 @query.setPredicate(predicateToRun)
30 @query.startQuery()
34 @query.stopQuery()
38 @query.setDelegate(aDelegate)
42 :object, @query
/macosx-10.9.5/Security-55471.14.18/sec/securityd/Regressions/
H A Dsecd-04-corrupted-items.c46 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
47 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
48 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("corrupt.spamcop.net"));
49 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
50 CFDictionaryAddValue(query, kSecAttrPort, eighty);
51 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
52 CFDictionaryAddValue(query, kSecAttrAuthenticationType, kSecAttrAuthenticationTypeDefault);
53 CFDictionaryAddValue(query, kSecValueData, pwdata);
54 CFDictionaryAddValue(query, kSecReturnPersistentRef, kCFBooleanTrue);
55 ok_status(SecItemAdd(query,
[all...]
H A Dsecd-30-keychain-upgrade.c84 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
85 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
86 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("members.spamcop.net"));
87 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
88 CFDictionaryAddValue(query, kSecAttrPort, eighty);
89 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
90 CFDictionaryAddValue(query, kSecAttrAuthenticationType, kSecAttrAuthenticationTypeDefault);
91 CFDictionaryAddValue(query, kSecValueData, pwdata);
92 ok_status(SecItemAdd(query, NULL), "add internet password");
93 is_status(SecItemAdd(query, NUL
[all...]
H A Dsecd-31-keychain-unreadable.c54 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
55 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
56 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("members.spamcop.net"));
57 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
58 CFDictionaryAddValue(query, kSecAttrPort, eighty);
59 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
60 CFDictionaryAddValue(query, kSecAttrAuthenticationType, kSecAttrAuthenticationTypeDefault);
61 CFDictionaryAddValue(query, kSecValueData, pwdata);
62 ok_status(SecItemAdd(query, NULL), "add internet password");
63 is_status(SecItemAdd(query, NUL
[all...]
/macosx-10.9.5/CPANInternal-140/URI/URI/
H A D_query.pm7 sub query subroutine
24 # Handle ...?foo=bar&bar=foo type of query
27 my $old = $self->query;
29 # Try to set query string
40 my @query;
50 push(@query, "$key=$val");
53 $self->query(@query ? join('&', @query) : undef);
61 # Handle ...?dog+bones type of query
[all...]
/macosx-10.9.5/libresolv-54/
H A Dres_debug.h23 # define DprintQ(cond, args, query, size) /*empty*/
28 # define DprintQ(cond, args, query, size) if (cond) {\
30 res_pquery(statp, query, size, stdout);\
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/regressions/
H A Dsi-33-keychain-backup.c42 CFMutableDictionaryRef query = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); local
44 CFDictionaryAddValue(query, kSecClass, kSecClassInternetPassword);
45 CFDictionaryAddValue(query, kSecAttrServer, CFSTR("members.spamcop.net"));
46 CFDictionaryAddValue(query, kSecAttrAccount, CFSTR("smith"));
47 CFDictionaryAddValue(query, kSecAttrPort, eighty);
48 CFDictionaryAddValue(query, kSecAttrProtocol, kSecAttrProtocolHTTP);
49 CFDictionaryAddValue(query, kSecAttrAuthenticationType, kSecAttrAuthenticationTypeDefault);
50 CFDictionaryAddValue(query, kSecValueData, pwdata);
51 CFDictionaryAddValue(query, kSecAttrSynchronizable, kCFBooleanTrue);
57 SecItemDelete(query);
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Dtest_query.in62 ${hxtool} query \
68 ${hxtool} query \
74 ${hxtool} query \
79 ${hxtool} query \
84 ${hxtool} query \
89 ${hxtool} query \
95 ${hxtool} query \
101 ${hxtool} query \
108 ${hxtool} query \
115 ${hxtool} query \
[all...]
/macosx-10.9.5/lsof-52/lsof/scripts/
H A Didentd.perl516 # -t TIMEOUT Number of seconds to wait for a query before aborting.
47 # read ident-query from socket (STDIN) with a timeout.
52 $query = <STDIN>;
61 # remove all white-spaces from query
62 $query =~ s/\s//g;
66 ($serv_port,$cli_port) = split(/,/,$query);
70 print $query." : ERROR : INVALID-PORT"."\n";
74 print $query." : ERROR : INVALID-PORT"."\n";
80 print $query." : ERROR : INVALID-PORT"."\n";
84 print $query
[all...]

Completed in 242 milliseconds

1234567891011>>