Searched refs:registry (Results 1 - 25 of 72) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/dom/
H A DIdTargetObserver.cpp33 IdTargetObserver::IdTargetObserver(IdTargetObserverRegistry& registry, const AtomicString& id) argument
34 : m_registry(&registry)
H A DMutationObserverRegistration.cpp100 void MutationObserverRegistration::unregisterAndDelete(MutationObserverRegistration* registry) argument
102 RefPtr<Node> registrationNode(registry->m_registrationNode);
103 registrationNode->unregisterMutationObserver(registry);
104 // The above line will cause registry to be deleted, so don't do any more in this function.
/macosx-10.10/BerkeleyDB-21/db/env/
H A Denv_register.c22 __os_fdlock(env, (env)->dbenv->registry, (off_t)(pos), 1, nowait)
24 __os_fdlock(env, (env)->dbenv->registry, (off_t)(pos), 0, 0)
36 * The registry feature is configured by specifying the DB_REGISTER flag to the
37 * DbEnv.open method. If DB_REGISTER is specified, DB opens the registry file
38 * in the database environment home directory. The registry file is formatted
73 * Whenever a process opens a new DbEnv handle, it walks the registry file and
78 * It's possible to get corruption in the registry file. If a write system
80 * the registry file, or a partial entry at the end of the file. This is OK.
81 * A corrupted entry will be flagged as a non-empty line during the registry
94 * already exists in Berkeley DB, too, the registry cod
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dregistry.m2 * registry.m -- Storing and finding exception data.
20 PyObject* registry,
30 sublist = PyDict_GetItem(registry, selector);
33 PyDict_SetItem(registry, selector, sublist);
46 PyObjC_FindInRegistry(PyObject* registry, Class cls, SEL selector)
55 if (registry == NULL) {
58 sublist = PyDict_GetItemString(registry, (char*)sel_getName(selector));
73 "Exception registry element isn't a tuple");
H A Dsuper-call.m4 * This file defines a registry that is used to find the right function to
18 struct registry
24 /* Dict mapping from signature-string to a 'struct registry' */
27 /* List of 3-tuples: (Class, "selector", 'struct registry' */
58 struct registry* v;
119 struct registry* v;
168 static struct registry*
239 struct registry* special;
253 static struct registry*
257 struct registry*
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DMediaStreamRegistry.cpp38 MediaStreamRegistry& MediaStreamRegistry::registry() function in class:WebCore::MediaStreamRegistry
48 ASSERT(&stream->registry() == this);
H A DMediaStreamRegistry.h44 static MediaStreamRegistry& registry();
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/
H A Dinit.c59 Trf_Registry* registry;
78 registry = TrfGetRegistry (interp);
80 if (!registry) {
96 registry->patchVariant = PATCH_832;
102 registry->patchVariant = PATCH_832;
105 registry->patchVariant = PATCH_82;
108 registry->patchVariant = PATCH_ORIG;
341 Trf_Registry* registry;
343 registry = TrfPeekForRegistry (interp);
345 return registry !
58 Trf_Registry* registry; local
338 Trf_Registry* registry; local
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/mediasource/
H A DMediaSourceRegistry.cpp42 MediaSourceRegistry& MediaSourceRegistry::registry() function in class:WebCore::MediaSourceRegistry
51 ASSERT(&registrable->registry() == this);
H A DMediaSourceRegistry.h51 static MediaSourceRegistry& registry();
/macosx-10.10/WebCore-7600.1.25/html/
H A DURLRegistry.h45 virtual URLRegistry& registry() const = 0;
H A DPublicURLManager.cpp53 RegistryURLMap::iterator found = m_registryToURL.add(&registrable->registry(), URLSet()).iterator;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dregistry.m2 * registry.m -- Storing and finding exception data.
20 PyObject* registry,
30 sublist = PyDict_GetItem(registry, selector);
33 PyDict_SetItem(registry, selector, sublist);
46 PyObjC_FindInRegistry(PyObject* registry, Class cls, SEL selector)
55 if (registry == NULL) {
60 sublist = PyDict_GetItem(registry, k);
77 "Exception registry element isn't a tuple");
98 PyErr_SetString(PyExc_TypeError, "Exception registry class name is not a string");
H A Dsuper-call.m4 * This file defines a registry that is used to find the right function to
18 struct registry
24 /* Dict mapping from signature-string to a 'struct registry' */
27 /* List of 3-tuples: (Class, "selector", 'struct registry' */
71 struct registry* v;
132 struct registry* v;
188 static struct registry*
265 struct registry* special;
279 static struct registry*
283 struct registry*
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dregistry.m2 * registry.m -- Storing and finding exception data.
20 PyObject* registry,
30 sublist = PyDict_GetItem(registry, selector);
33 PyDict_SetItem(registry, selector, sublist);
46 PyObjC_FindInRegistry(PyObject* registry, Class cls, SEL selector)
55 if (registry == NULL) {
60 sublist = PyDict_GetItem(registry, k);
77 "Exception registry element isn't a tuple");
98 PyErr_SetString(PyExc_TypeError, "Exception registry class name is not a string");
H A Dsuper-call.m4 * This file defines a registry that is used to find the right function to
18 struct registry
24 /* Dict mapping from signature-string to a 'struct registry' */
27 /* List of 3-tuples: (Class, "selector", 'struct registry' */
71 struct registry* v;
132 struct registry* v;
188 static struct registry*
265 struct registry* special;
279 static struct registry*
283 struct registry*
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dtranslit.cpp90 * The mutex controlling access to registry object.
95 * System transliterator registry; non-null when initialized.
97 static icu::TransliteratorRegistry* registry = 0; variable
99 // Macro to check/initialize the registry. ONLY USE WITHIN
100 // MUTEX. Avoids function call when registry is initialized.
101 #define HAVE_REGISTRY(status) (registry!=0 || initializeRegistry(status))
981 t = registry->get(id, alias, ec);
995 // registry mutex. The alias may, in turn, generate another alias, so
1013 t = registry->reget(id, parser, alias, ec);
1226 registry
[all...]
/macosx-10.10/sudo-73/src/
H A Daix.c143 char *registry; local
148 if (getuserattr(user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
149 if (setauthdb(registry, NULL) != 0)
150 error(1, "unable to switch to registry \"%s\" for %s",
151 registry, user);
164 error(1, "unable to restore registry");
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DBlob.cpp47 static URLRegistry& registry();
53 ASSERT(&blob->registry() == this);
62 URLRegistry& BlobURLRegistry::registry() function in class:WebCore::BlobURLRegistry
199 URLRegistry& Blob::registry() const function in class:WebCore::Blob
201 return BlobURLRegistry::registry();
/macosx-10.10/WebCore-7600.1.25/crypto/
H A DCryptoAlgorithmRegistry.cpp39 static NeverDestroyed<CryptoAlgorithmRegistry> registry; local
41 return registry;
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dport-aix.c327 * If we have setauthdb, retrieve the password registry for the user's
336 char *registry; local
343 if (getuserattr((char *)user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
344 if (setauthdb(registry, old_registry) == 0)
345 debug3("AIX/setauthdb set registry '%s'", registry);
347 debug3("AIX/setauthdb set registry '%s' failed: %s",
348 registry, strerror(errno));
357 * Restore the user's registry settings from old_registry.
367 debug3("%s: restoring old registry '
[all...]
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/apps/actiweb/
H A DAgentClient.xotcl138 my invoke $host ${placeName}::registry register $rdfText
140 set r [my invoke $host ${placeName}::registry query registryTest]
142 set r [my invoke $host ${placeName}::registry queryProperty http://nestroy.wi-inf.uni-essen.de/schema/agent\#place ::p]
/macosx-10.10/ruby-106/ruby/lib/uri/
H A Dgeneric.rb45 :userinfo, :host, :port, :registry,
59 # Default to not use the registry for a URI::Generic
64 # Returns whether a registry of naming
117 # with check. Components are: scheme, userinfo, host, port, registry, path,
154 # +registry+::
174 userinfo, host, port, registry,
188 @registry = nil
200 self.registry = registry
210 self.set_registry(registry)
[all...]
H A Dcommon.rb127 registry, path, query, fragment = $~[1..-1]
145 if !opaque && (!path && (!host && !registry))
154 userinfo, host, port, registry,
183 registry, # X
211 registry, path, opaque, query, fragment = self.split(uri)
215 registry, path, opaque, query,
219 registry, path, opaque, query,
467 (#{reg_name}) (?# 6: registry)
485 (#{reg_name}) (?# 4: registry)
/macosx-10.10/emacs-93/emacs/src/
H A Dw32bdf.h103 unsigned char *registry; member in struct:__anon8815

Completed in 152 milliseconds

123