/external/dbus/bus/ |
D | services.c | 44 BusRegistry *registry; member 76 BusRegistry *registry; in bus_registry_new() local 78 registry = dbus_new0 (BusRegistry, 1); in bus_registry_new() 79 if (registry == NULL) in bus_registry_new() 82 registry->refcount = 1; in bus_registry_new() 83 registry->context = context; in bus_registry_new() 85 registry->service_hash = _dbus_hash_table_new (DBUS_HASH_STRING, in bus_registry_new() 87 if (registry->service_hash == NULL) in bus_registry_new() 90 registry->service_pool = _dbus_mem_pool_new (sizeof (BusService), in bus_registry_new() 93 if (registry->service_pool == NULL) in bus_registry_new() [all …]
|
D | services.h | 37 BusRegistry* bus_registry_ref (BusRegistry *registry); 38 void bus_registry_unref (BusRegistry *registry); 39 BusService* bus_registry_lookup (BusRegistry *registry, 41 BusService* bus_registry_ensure (BusRegistry *registry, 47 void bus_registry_foreach (BusRegistry *registry, 50 dbus_bool_t bus_registry_list_services (BusRegistry *registry, 53 dbus_bool_t bus_registry_acquire_service (BusRegistry *registry, 60 dbus_bool_t bus_registry_release_service (BusRegistry *registry, 66 dbus_bool_t bus_registry_set_service_context_table (BusRegistry *registry,
|
D | driver.c | 184 create_unique_client_name (BusRegistry *registry, in create_unique_client_name() argument 233 if (bus_registry_lookup (registry, str) == NULL) in create_unique_client_name() 252 BusRegistry *registry; in bus_driver_handle_hello() local 287 registry = bus_connection_get_registry (connection); in bus_driver_handle_hello() 289 if (!create_unique_client_name (registry, &unique_name)) in bus_driver_handle_hello() 312 service = bus_registry_ensure (registry, in bus_driver_handle_hello() 379 BusRegistry *registry; in bus_driver_handle_list_services() local 386 registry = bus_connection_get_registry (connection); in bus_driver_handle_list_services() 395 if (!bus_registry_list_services (registry, &services, &len)) in bus_driver_handle_list_services() 568 BusRegistry *registry; in bus_driver_handle_acquire_service() local [all …]
|
D | policy.h | 142 BusRegistry *registry, 149 BusRegistry *registry,
|
D | bus.c | 60 BusRegistry *registry; member 652 if (!bus_registry_set_service_context_table (context->registry, in process_config_postinit() 726 context->registry = bus_registry_new (context); in bus_context_new() 727 if (context->registry == NULL) in bus_context_new() 1050 if (context->registry) in bus_context_unref() 1052 bus_registry_unref (context->registry); in bus_context_unref() 1053 context->registry = NULL; in bus_context_unref() 1145 return context->registry; in bus_context_get_registry() 1520 context->registry, in bus_context_check_security_policy() 1582 context->registry, in bus_context_check_security_policy()
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | DefaultHttpClient.java | 164 SchemeRegistry registry = new SchemeRegistry(); in createClientConnectionManager() local 165 registry.register( in createClientConnectionManager() 167 registry.register( in createClientConnectionManager() 196 connManager = factory.newInstance(params, registry); in createClientConnectionManager() 198 connManager = new SingleClientConnManager(getParams(), registry); in createClientConnectionManager() 237 AuthSchemeRegistry registry = new AuthSchemeRegistry(); in createAuthSchemeRegistry() local 238 registry.register( in createAuthSchemeRegistry() 241 registry.register( in createAuthSchemeRegistry() 244 return registry; in createAuthSchemeRegistry() 250 CookieSpecRegistry registry = new CookieSpecRegistry(); in createCookieSpecRegistry() local [all …]
|
D | AbstractAuthenticationHandler.java | 114 AuthSchemeRegistry registry = (AuthSchemeRegistry) context.getAttribute( in selectScheme() local 116 if (registry == null) { in selectScheme() 141 authScheme = registry.getAuthScheme(id, response.getParams()); in selectScheme()
|
/external/icu4c/i18n/ |
D | translit.cpp | 96 static U_NAMESPACE_QUALIFIER TransliteratorRegistry* registry = 0; variable 100 #define HAVE_REGISTRY(status) (registry!=0 || initializeRegistry(status)) 984 t = registry->get(id, alias, ec); in createBasicInstance() 1016 t = registry->reget(id, parser, alias, ec); in createBasicInstance() 1228 registry->put(id, factory, context, TRUE, ec); in _registerFactory() 1263 registry->put(adoptedPrototype, TRUE, ec); in _registerInstance() 1278 registry->put(aliasID, realID, FALSE, TRUE, ec); in _registerAlias() 1293 registry->remove(ID); in unregister() 1308 retVal = registry->countAvailableIDs(); in countAvailableIDs() 1324 result = ®istry->getAvailableID(index); in getAvailableID() [all …]
|
/external/webkit/Source/WebCore/platform/text/mac/ |
D | character-sets.txt | 42 registry. These aliases that start with "cs" contain the standard 65 Source: ECMA registry 86 Source: ECMA registry 96 Source: ECMA registry 103 Source: ECMA registry 112 Source: ECMA registry 118 Source: ECMA registry 124 Source: ECMA registry 130 Source: ECMA registry 136 Source: ECMA registry [all …]
|
/external/apache-http/src/org/apache/http/client/protocol/ |
D | ClientContextConfigurer.java | 52 public void setCookieSpecRegistry(final CookieSpecRegistry registry) { in setCookieSpecRegistry() argument 53 this.context.setAttribute(COOKIESPEC_REGISTRY, registry); in setCookieSpecRegistry() 56 public void setAuthSchemeRegistry(final AuthSchemeRegistry registry) { in setAuthSchemeRegistry() argument 57 this.context.setAttribute(AUTHSCHEME_REGISTRY, registry); in setAuthSchemeRegistry()
|
D | RequestAddCookies.java | 96 CookieSpecRegistry registry= (CookieSpecRegistry) context.getAttribute( in process() local 98 if (registry == null) { in process() 147 CookieSpec cookieSpec = registry.getCookieSpec(policy, request.getParams()); in process()
|
/external/chromium/sdch/open-vcdiff/src/ |
D | gflags.cc | 1328 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); in ProcessOptionsFromStringLocked() local 1329 FlagRegistryLock frl(registry); in ProcessOptionsFromStringLocked() 1332 CommandLineFlag* flag = registry->FindFlagViaPtrLocked(flag_ptr); in ProcessOptionsFromStringLocked() 1410 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); in GetAllFlags() local 1411 registry->Lock(); in GetAllFlags() 1412 for (FlagRegistry::FlagConstIterator i = registry->flags_.begin(); in GetAllFlags() 1413 i != registry->flags_.end(); ++i) { in GetAllFlags() 1418 registry->Unlock(); in GetAllFlags() 1524 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); in GetCommandLineOption() local 1525 FlagRegistryLock frl(registry); in GetCommandLineOption() [all …]
|
/external/apache-harmony/support/src/test/resources/tests/resources/manifest/ |
D | hyts_MANIFEST.MF | 6 com.ibm.ive.eccomm.client.services.registry, 7 com.ibm.ive.eccomm.service.registry; specification-version=1.0.0, 18 com.ibm.ive.eccomm.service.registry.RegistryService 22 com.ibm.ive.eccomm.client.services.registry.store; specification-version=1.0.0
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | WireFormatTest.java | 161 ExtensionRegistry registry = TestUtil.getExtensionRegistry(); in testParseExtensions() local 164 TestAllExtensions.parseFrom(rawBytes, registry); in testParseExtensions() 174 ExtensionRegistry registry = TestUtil.getExtensionRegistry(); in testParsePackedExtensions() local 177 TestPackedExtensions.parseFrom(rawBytes, registry); in testParsePackedExtensions() 198 ExtensionRegistry registry = TestUtil.getExtensionRegistry(); in testParseExtensionsLite() local 201 TestAllExtensionsLite.parseFrom(rawBytes, registry); in testParseExtensionsLite() 211 ExtensionRegistryLite registry = TestUtil.getExtensionRegistryLite(); in testParsePackedExtensionsLite() local 214 TestPackedExtensionsLite.parseFrom(rawBytes, registry); in testParsePackedExtensionsLite()
|
/external/freetype/src/cff/ |
D | cffdrivr.c | 443 const char* *registry, in cff_get_ros() 462 if ( registry ) in cff_get_ros() 464 if ( cff->registry == NULL ) in cff_get_ros() 465 cff->registry = cff_index_get_sid_string( cff, in cff_get_ros() 467 *registry = cff->registry; in cff_get_ros()
|
/external/chromium/chrome/browser/custom_handlers/ |
D | register_protocol_handler_infobar_delegate.cc | 14 ProtocolHandlerRegistry* registry, in RegisterProtocolHandlerInfoBarDelegate() argument 18 registry_(registry), in RegisterProtocolHandlerInfoBarDelegate()
|
D | register_protocol_handler_infobar_delegate.h | 22 ProtocolHandlerRegistry* registry,
|
/external/mesa3d/docs/ |
D | enums.txt | 2 See the OpenGL ARB enum registry at http://www.opengl.org/registry/api/enum.spec
|
/external/chromium/chrome/browser/ui/tab_contents/ |
D | tab_contents_wrapper.cc | 294 ProtocolHandlerRegistry* registry = profile()->GetProtocolHandlerRegistry(); in OnRegisterProtocolHandler() local 298 registry->CanSchemeBeOverridden(handler->protocol())) { in OnRegisterProtocolHandler() 299 tab_contents()->AddInfoBar(registry->IsAlreadyRegistered(handler) ? in OnRegisterProtocolHandler() 304 new RegisterProtocolHandlerInfoBarDelegate(tab_contents(), registry, in OnRegisterProtocolHandler()
|
/external/chromium/base/ |
D | tracked_objects.cc | 108 ThreadData* registry = static_cast<ThreadData*>(tls_index_.Get()); in current() local 109 if (!registry) { in current() 113 registry = new ThreadData; in current() 120 registry->next_ = first_; in current() 121 first_ = registry; in current() 125 delete registry; in current() 126 registry = NULL; in current() 128 tls_index_.Set(registry); in current() 131 return registry; in current()
|
/external/freetype/src/sfnt/ |
D | sfdriver.c | 347 BDF_PropertyRec encoding, registry; in sfnt_get_charset_id() local 357 error = tt_face_find_bdf_prop( face, "CHARSET_REGISTRY", ®istry ); in sfnt_get_charset_id() 363 if ( registry.type == BDF_PROPERTY_TYPE_ATOM && in sfnt_get_charset_id() 367 *acharset_registry = registry.u.atom; in sfnt_get_charset_id()
|
/external/chromium/net/base/ |
D | effective_tld_names.dat | 230 // Confirmed by registry <iana-questions@icann.org> 2008-06-18 246 // Confirmed by registry <it@nic.at> 2008-06-17 258 // Submitted by registry <lendl@nic.at> 2008-06-09 341 // Confirmed by registry <tech@dns.be> 2008-06-08 439 // Updated by registry <fneves@registro.br> 2011-03-01 527 // Submitted by registry <jarle@uninett.no> 2006-06-16 577 // see also: http://registry.gc.ca/en/SubdomainFAQ 632 // Submitted by registry <tanyaling@cnnic.cn> 2008-06-11 681 // Submitted by registry <tecnico@uniandes.edu.co> 2008-06-11 701 // Confirmed by registry <gavin.brown@centralnic.com> 2008-06-09 [all …]
|
/external/freetype/include/freetype/ |
D | ftcid.h | 87 const char* *registry,
|
/external/dbus/ |
D | README.wince | 15 1) At installation, the following registry value should be set to the 67 Environment variables are faked. Some are punted to the registry, but
|
/external/freetype/include/freetype/internal/services/ |
D | svcid.h | 31 const char* *registry,
|