Searched refs:store (Results 276 - 300 of 584) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/mDNSResponder-561.1.1/mDNSMacOSX/PreferencePane/
H A DDNSServiceDiscoveryPref.m74 static void NetworkChanged(SCDynamicStoreRef store, CFArrayRef changedKeys, void *context)
76 (void)store; // Unused
248 SCDynamicStoreRef store = SCDynamicStoreCreate(NULL, CFSTR("watchForPreferenceChanges"), NetworkChanged, &context);
252 assert(store != NULL);
258 (void)SCDynamicStoreSetNotificationKeys(store, keys, NULL);
260 rls = SCDynamicStoreCreateRunLoopSource(NULL, store, 0);
266 CFRelease(store);
272 SCDynamicStoreRef store = SCDynamicStoreCreate(NULL, CFSTR("statusForHostName"), NULL, NULL);
276 assert(store != NULL);
278 NSDictionary *dynamicDNS = (NSDictionary *)SCDynamicStoreCopyValue(store, SC_DYNDNS_STATE_KE
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/store/
H A Dstr_lib.c1 /* crypto/store/str_lib.c -*- mode:C; c-file-style: "eay" -*- */
181 void STORE_free(STORE *store) argument
183 if (store == NULL)
185 if (store->meth->clean)
186 store->meth->clean(store);
187 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_STORE, store, &store->ex_data);
188 OPENSSL_free(store);
191 int STORE_ctrl(STORE *store, in argument
222 STORE_get_method(STORE *store) argument
227 STORE_set_method(STORE *store, const STORE_METHOD *meth) argument
[all...]
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCNetworkReachability.c149 __SCNetworkReachabilityHandleChanges (SCDynamicStoreRef store,
398 SCDynamicStoreRef store; member in struct:__anon7166
432 dst->store = src->store;
433 CFRetain(dst->store);
484 if (store_info->store != NULL) {
485 CFRelease(store_info->store);
486 store_info->store = NULL;
644 store_info->dict = SCDynamicStoreCopyMultiple(store_info->store, keys, patterns);
705 if (store_info->store
3023 __block SCDynamicStoreRef store = NULL; local
3869 __block SCDynamicStoreRef store = NULL; local
3967 __block SCDynamicStoreRef store = NULL; local
4414 __block SCDynamicStoreRef store = NULL; local
4997 __SCNetworkReachabilityHandleChanges(SCDynamicStoreRef store, CFArrayRef changedKeys, void *info) argument
5286 __SCNetworkReachabilityHandleStoreChanges(SCDynamicStoreRef store, CFArrayRef changedKeys, void *info) argument
[all...]
H A DSCDHostName.c110 SCDynamicStoreCopyComputerName(SCDynamicStoreRef store, argument
118 dict = SCDynamicStoreCopyValue(store, key);
392 SCDynamicStoreCopyLocalHostName(SCDynamicStoreRef store) argument
399 dict = SCDynamicStoreCopyValue(store, key);
H A DSCProxies.c394 SCDynamicStoreCopyProxies(SCDynamicStoreRef store) argument
396 return SCDynamicStoreCopyProxiesWithOptions(store, NULL);
402 SCDynamicStoreCopyProxiesWithOptions(SCDynamicStoreRef store, CFDictionaryRef options) argument
423 /* copy proxy information from dynamic store */
426 proxies = SCDynamicStoreCopyValue(store, key);
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DEvolver.java127 * returns null otherwise. If non-null is returned, the store may not be
611 void renameAndRemoveDatabases(Store store, Transaction txn) argument
616 String[] fileAndDbNames = store.parseDbName(dbName);
618 (store.getEnvironment(), txn,
627 String[] oldFileAndDbNames = store.parseDbName(oldName);
628 String[] newFileAndDbNames = store.parseDbName(newName);
630 (store.getEnvironment(), txn,
H A DPersistCatalog.java50 * The catalog of class formats for a store, along with its associated model
141 private Store store; field in class:PersistCatalog
167 Store store)
171 this.store = store;
172 /* store may be null for testing. */
173 String[] fileAndDbNames = (store != null) ?
174 store.parseDbName(dbName) :
278 * We are opening a store that uses the current model. Default to
404 evolver.renameAndRemoveDatabases(store, tx
159 PersistCatalog(Transaction txn, Environment env, String storePrefix, String dbName, DatabaseConfig dbConfig, EntityModel modelParam, Mutations mutationsParam, boolean rawAccess, Store store) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dsmime.c96 X509_STORE *store = NULL; local
640 if (!(store = setup_verify(bio_err, CAfile, CApath)))
642 X509_STORE_set_verify_cb_func(store, smime_cb);
644 X509_STORE_set1_param(store, vpm);
709 if (PKCS7_verify(p7, other, store, indata, out, flags))
757 X509_STORE_free(store);
H A Dpkcs12.c88 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain);
537 X509_STORE *store = X509_STORE_new(); local
538 if (!store)
543 if (!X509_STORE_load_locations(store, CAfile, CApath))
544 X509_STORE_set_default_paths (store);
546 vret = get_cert_chain (ucert, store, &chain2);
547 X509_STORE_free(store);
833 int get_cert_chain (X509 *cert, X509_STORE *store, STACK_OF(X509) **chain) argument
842 X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
/macosx-10.10/OpenSSL098-52/src/crypto/cms/
H A Dcms_smime.c286 X509_STORE *store,
295 if (!X509_STORE_CTX_init(&ctx, store, signer, certs))
323 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags)
373 if (!cms_signerinfo_verify_cert(si, store,
394 * store its contents in a temporary read only memory BIO. This
456 X509_STORE *store, unsigned int flags)
459 r = CMS_verify(rcms, certs, store, NULL, NULL, flags);
285 cms_signerinfo_verify_cert(CMS_SignerInfo *si, X509_STORE *store, STACK_OF(X509) *certs, STACK_OF(X509_CRL) *crls, unsigned int flags) argument
322 CMS_verify(CMS_ContentInfo *cms, STACK_OF(X509) *certs, X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags) argument
454 CMS_verify_receipt(CMS_ContentInfo *rcms, CMS_ContentInfo *ocms, STACK_OF(X509) *certs, X509_STORE *store, unsigned int flags) argument
/macosx-10.10/ICU-531.30/icuSources/layout/
H A DLookupProcessor.cpp116 le_int32 store = order; local
127 lookupOrderArray[store++] = lookupListIndex;
130 return store - order;
/macosx-10.10/configd-699.1.5/Plugins/KernelEventMonitor/
H A Dev_ipv6.c196 dict = cache_SCDynamicStoreCopyValue(store, key);
235 cache_SCDynamicStoreSetValue(store, key, newDict);
237 cache_SCDynamicStoreRemoveValue(store, key);
/macosx-10.10/emacs-93/emacs/lisp/net/
H A Dquickurl.el213 (defsetf quickurl-url-keyword (url) (store)
214 `(setf (car ,url) ,store))
224 (defsetf quickurl-url-url (url) (store)
227 (setf (cadr ,url) ,store)
228 (setf (cdr ,url) ,store)))
239 (defsetf quickurl-url-comment (url) (store)
242 (if (zerop (length ,store))
244 (setf (nth 2 ,url) ,store))
245 (unless (zerop (length ,store))
246 (setf (cdr ,url) (list (cdr ,url) ,store)))))
[all...]
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_ri_driver.rb406 assert_equal stores, classes[klass].sort_by { |store| store.path },
457 store = RDoc::RI::Store.new @home_ri
458 store.cache[:ancestors] = {
462 store.cache[:class_methods] = {
465 store.cache[:instance_methods] = {
468 store.cache[:modules] = %w[
473 @driver.stores = [store]
865 @driver.find_methods 'Foo::Bar.' do |store, klass, ancestor, types, method|
866 items << [store, klas
[all...]
H A Dtest_rdoc_parser_c.rb51 @top_level = @store.add_file filename
55 @stats = RDoc::Stats.new @store, 0
107 @store.cache[:c_class_variables] = {
111 @store.cache[:c_singleton_class_variables] = {
689 @store.all_classes_and_modules.map { |m| m.full_name }.sort
720 @store.all_classes_and_modules.map { |m| m.full_name }.sort
1372 @store.cache[:c_class_variables][@fn] = { 'cSomeExt' => 'SomeExt' }
1373 @store.cache[:c_class_variables]['other.c'] = { 'cOtherExt' => 'OtherExt' }
1396 @store.cache[:c_class_variables] = nil
1409 @store
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Ddbm.tcl42 set ret [berkdb store $str $str]
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLOutput.cpp92 void Output::store(LValue value, TypedPointer pointer, LType refType) function in class:JSC::FTL::Output
/macosx-10.10/WebCore-7600.1.25/replay/
H A DSegmentedInputStorage.cpp101 void SegmentedInputStorage::store(std::unique_ptr<NondeterministicInputBase> input) function in class:WebCore::SegmentedInputStorage
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebPreferences.h57 const WebPreferencesStore& store() const { return m_store; } function in class:WebKit::WebPreferences
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dasyn-ares.c370 struct timeval *tvp, tv, store; local
377 store.tv_sec = itimeout/1000;
378 store.tv_usec = (itimeout%1000)*1000;
380 tvp = ares_timeout((ares_channel)data->state.resolver, &store, &tv);
/macosx-10.10/remote_cmds-47/revnetgroup.tproj/
H A Dhash.c148 store(struct group_entry *table[], char *key, char *data) function
H A Drevnetgroup.c136 store(gtable, key, data);
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dutils.rb265 store = OpenSSL::X509::Store.new
266 store.add_cert(@ca_cert)
267 store.purpose = OpenSSL::X509::PURPOSE_SSL_CLIENT
269 ctx.cert_store = store
/macosx-10.10/syslog-267/libsystem_asl.tproj/include/
H A Dasl_client.h69 asl_store_t *store; member in struct:asl_client_s
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/
H A Dtext_write.tcl21 store recall undef undo get getl maxlen fieldsep \
136 proc ::text::write::store {name} {
137 # Save current block and under a name. /store

Completed in 179 milliseconds

<<11121314151617181920>>