Searched refs:store (Results 26 - 50 of 592) sorted by relevance

1234567891011>>

/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCDynamicStoreCopySpecific.h51 @param store An SCDynamicStoreRef representing the dynamic store
63 SCDynamicStoreRef store,
76 @param store An SCDynamicStoreRef representing the dynamic store
91 SCDynamicStoreRef store,
99 @param store An SCDynamicStoreRef representing the dynamic store
108 SCDynamicStoreRef store
114 @param store A
[all...]
H A DSCDNotifierGetChanges.c43 SCDynamicStoreCopyNotifiedKeys(SCDynamicStoreRef store) argument
45 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
52 if (store == NULL) {
71 if (__SCDynamicStoreCheckRetryAndHandleError(store,
H A DSCDynamicStoreSetSpecificPrivate.h41 @param store An SCDynamicStoreRef that should be used for communication
60 SCDynamicStoreRef store,
71 @param store An SCDynamicStoreRef that should be used for communication
83 SCDynamicStoreRef store,
H A DSCDList.c43 SCDynamicStoreCopyKeyList(SCDynamicStoreRef store, CFStringRef pattern) argument
55 if (store == NULL) {
56 store = __SCDynamicStoreNullSession();
57 if (store == NULL) {
64 storePrivate = (SCDynamicStorePrivateRef)store;
87 if (__SCDynamicStoreCheckRetryAndHandleError(store,
H A DSCDAdd.c43 SCDynamicStoreAddTemporaryValue(SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value) argument
45 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
56 if (store == NULL) {
92 if (__SCDynamicStoreCheckRetryAndHandleError(store,
112 SCDynamicStoreAddValue(SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value) argument
125 if (store == NULL) {
126 store = __SCDynamicStoreNullSession();
127 if (store == NULL) {
134 storePrivate = (SCDynamicStorePrivateRef)store;
165 if (__SCDynamicStoreCheckRetryAndHandleError(store,
[all...]
H A DSCDNotifierInformViaCallback.c54 SCDynamicStoreRef store = (SCDynamicStoreRef)info; local
58 CFSTR("<SCDynamicStore notification MP> {store = %p}"),
59 store);
68 SCDynamicStoreRef store = (SCDynamicStoreRef)info; local
69 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
84 (void)__SCDynamicStoreReconnectNotifications(store);
98 SCDynamicStoreRef store = (SCDynamicStoreRef)info; local
99 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
109 , (void *)store
134 kr = mach_port_construct(mach_task_self(), &opts, store,
207 (void) mach_port_destruct(mach_task_self(), port, 0, store); local
217 (void) mach_port_destruct(mach_task_self(), port, 0, store); local
254 SCDynamicStoreRef store = (SCDynamicStoreRef)info; local
317 (void) mach_port_destruct(mach_task_self(), mp, 0, store); local
348 SCDynamicStoreRef store = (SCDynamicStoreRef)info; local
396 SCDynamicStoreRef store = (SCDynamicStoreRef)cf; local
420 SCDynamicStoreRef store = (SCDynamicStoreRef)cf; local
447 SCDynamicStoreRef store = (SCDynamicStoreRef)info; local
477 SCDynamicStoreCreateRunLoopSource(CFAllocatorRef allocator, SCDynamicStoreRef store, CFIndex order) argument
532 SCDynamicStoreSetDispatchQueue(SCDynamicStoreRef store, dispatch_queue_t queue) argument
[all...]
H A DSCDGet.c44 SCDynamicStoreCopyMultiple(SCDynamicStoreRef store, argument
62 if (store == NULL) {
63 store = __SCDynamicStoreNullSession();
64 if (store == NULL) {
71 storePrivate = (SCDynamicStorePrivateRef)store;
106 if (__SCDynamicStoreCheckRetryAndHandleError(store,
139 SCDynamicStoreCopyValue(SCDynamicStoreRef store, CFStringRef key) argument
152 if (store == NULL) {
153 store = __SCDynamicStoreNullSession();
154 if (store
[all...]
H A DSCDSet.c44 SCDynamicStoreSetMultiple(SCDynamicStoreRef store, argument
62 if (store == NULL) {
63 store = __SCDynamicStoreNullSession();
64 if (store == NULL) {
71 storePrivate = (SCDynamicStorePrivateRef)store;
127 if (__SCDynamicStoreCheckRetryAndHandleError(store,
148 SCDynamicStoreSetValue(SCDynamicStoreRef store, CFStringRef key, CFPropertyListRef value) argument
161 if (store == NULL) {
162 store = __SCDynamicStoreNullSession();
163 if (store
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/persist/test/
H A DEvolveTest.java24 * store created by EvolveTestInit. It verifies that it can read/write/evolve
63 * is possible whether or not we can open the store further below to
79 (store.getModel(), env, true /*oldTypesExist*/);
80 caseObj.readObjects(store, false /*doUpdate*/);
105 (store.getModel(), env, true /*oldTypesExist*/);
106 caseObj.readObjects(store, false /*doUpdate*/);
110 * Open read-write to update objects and store them in evolved
115 (store.getModel(), env, true /*oldTypesExist*/);
116 caseObj.readObjects(store, true /*doUpdate*/);
118 (store
[all...]
H A DEvolveClasses.java.original51 void writeObjects(EntityStore store)
55 store.getPrimaryIndex
60 sindex = store.getSecondaryIndex(index, Integer.class, "skey");
85 void writeObjects(EntityStore store)
89 store.getPrimaryIndex
94 sindex = store.getSecondaryIndex(index, Integer.class, "skey");
119 void writeObjects(EntityStore store)
123 index = store.getPrimaryIndex
130 sindex = store.getSecondaryIndex(index, Integer.class, "skey");
156 void writeObjects(EntityStore store)
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dglobalizer.cpp83 auto_ptr<Store> store(new Store);
85 sprintf(form, "*%p", &store);
90 if (mStore == store.get()) // we won the race...
91 store.release(); // ... so keep the store
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dglobalizer.cpp83 auto_ptr<Store> store(new Store);
85 sprintf(form, "*%p", &store);
90 if (mStore == store.get()) // we won the race...
91 store.release(); // ... so keep the store
/macosx-10.9.5/configd-596.15/configd.tproj/
H A D_configclose.c67 removeAllKeys(SCDynamicStoreRef store, Boolean isRegex) argument
69 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
81 (void) __SCDynamicStoreRemoveWatchedKey(store,
95 __SCDynamicStoreClose(SCDynamicStoreRef *store) argument
102 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)*store;
111 removeAllKeys(*store, FALSE); // keys
112 removeAllKeys(*store, TRUE); // patterns
116 (void) __SCDynamicStoreNotifyCancel(*store);
129 (void) __SCDynamicStoreRemoveValue(*store, CFArrayGetValueAtIndex(keys, i), TRUE);
158 CFRelease(*store);
[all...]
H A D_confignotify.c36 __SCDynamicStoreNotifyValue(SCDynamicStoreRef store, CFStringRef key, Boolean internal) argument
40 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
53 * Tickle the value in the dynamic store
62 /* replace or store initial/temporary existing value */
63 __SCDynamicStoreSetValue(store, key, value, TRUE);
67 __SCDynamicStoreRemoveValue(store, key, TRUE);
117 *sc_status = __SCDynamicStoreNotifyValue(mySession->store, key, FALSE);
H A D_notifycancel.c42 __SCDynamicStoreNotifyCancel(SCDynamicStoreRef store) argument
44 SCDynamicStorePrivateRef storePrivate = (SCDynamicStorePrivateRef)store;
107 __MACH_PORT_DEBUG(((SCDynamicStorePrivateRef)mySession->store)->notifyPort != MACH_PORT_NULL,
109 ((SCDynamicStorePrivateRef)mySession->store)->notifyPort);
110 *sc_status = __SCDynamicStoreNotifyCancel(mySession->store);
/macosx-10.9.5/ruby-104/ruby/ext/openssl/
H A Dossl_x509store.c58 ossl_x509store_new(X509_STORE *store) argument
62 WrapX509Store(cX509Store, obj, store);
70 X509_STORE *store; local
72 SafeGetX509Store(obj, store);
74 return store;
80 X509_STORE *store; local
82 SafeGetX509Store(obj, store);
83 CRYPTO_add(&store->references, 1, CRYPTO_LOCK_X509_STORE);
85 return store;
94 X509_STORE *store; local
111 X509_STORE *store; local
129 X509_STORE *store; local
156 X509_STORE *store; local
172 X509_STORE *store; local
188 X509_STORE *store; local
219 X509_STORE *store; local
240 X509_STORE *store; local
271 X509_STORE *store; local
291 X509_STORE *store; local
306 X509_STORE *store; local
401 VALUE store, cert, chain, t; local
542 X509_STORE_CTX *store; local
554 X509_STORE_CTX *store; local
566 X509_STORE_CTX *store; local
582 X509_STORE_CTX *store; local
[all...]
/macosx-10.9.5/CPANInternal-140/URI/t/
H A Dstorable-test.pl6 if (@ARGV && $ARGV[0] eq "store") {
12 print "# store\n";
13 store [URI->new("http://search.cpan.org")], 'urls.sto';
/macosx-10.9.5/ruby-104/ruby/sample/openssl/
H A Dsmime_read.rb18 store = X509::Store.new
19 store.add_path(ca_path)
21 if p7sig.verify([], store)
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_constant.rb16 top_level = @store.add_file 'file.rb'
33 top_level = @store.add_file 'file.rb'
47 loaded.store = @store
64 top_level = @store.add_file 'file.rb'
75 loaded.store = @store
94 top_level = @store.add_file 'file.rb'
109 loaded.store = @store
[all...]
H A Dtest_rdoc_servlet.rb24 @cache = Hash.new { |hash, store| hash[store] = {} }
180 store = RDoc::Store.new
182 generator = @s.generator_for store
184 file = store.add_file 'file.rb'
188 @s.documentation_page store, generator, 'Klass::Sub.html', @req, @res
195 store = RDoc::Store.new
197 generator = @s.generator_for store
201 @s.documentation_page store, generator, 'Missing.html', @req, @res
207 store
[all...]
H A Dtest_rdoc_generator_ri.rb11 @store.encoding = Encoding::UTF_8
17 @g = RDoc::Generator::RI.new @store, @options
19 @top_level = @store.add_file 'file.rb'
64 store = RDoc::RI::Store.new @tmpdir
65 store.load_cache
69 assert_equal encoding, store.encoding
73 @store.dry_run = true
74 @g = RDoc::Generator::RI.new @store, @options
76 top_level = @store.add_file 'file.rb'
H A Dtest_rdoc_top_level.rb8 @top_level = @store.add_file 'path/top_level.rb'
30 object = @store.find_class_named 'Object'
42 object = @store.find_class_named('Object')
51 object = @store.find_class_named 'Object'
62 object = @store.find_class_named 'Object'
71 object = @store.find_class_named 'Object'
82 object = @store.find_class_named('Object')
91 object = @store.find_class_named 'Object'
102 object = @store.find_class_named('Object')
114 page = @store
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Dservlet.rb29 @cache = Hash.new { |hash, store| hash[store] = {} }
131 # Fills in +res+ with the class, module or page for +req+ from +store+.
137 def documentation_page store, generator, path, req, res
140 if klass = store.find_class_or_module(name) then
142 elsif page = store.find_text_page(name.sub(/_([^_]*)$/, '.\1')) then
150 # Creates the JSON search index on +res+ for the given +store+. +generator+
153 def documentation_search store, generator, req, res
154 json_index = @cache[store].fetch :json_index do
155 @cache[store][
[all...]
/macosx-10.9.5/shell_cmds-175/find/
H A Dmisc.c60 brace_subst(char *orig, char **store, char *path, int len) argument
66 for (p = *store; (ch = *orig) != '\0'; ++orig)
68 while ((p - *store) + plen > len)
69 if (!(*store = realloc(*store, len *= 2)))
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java13 public SimpleDA(EntityStore store) argument
17 pIdx = store.getPrimaryIndex(
24 sIdx = store.getSecondaryIndex(

Completed in 133 milliseconds

1234567891011>>