HomeSort by relevance Sort by last modified time
    Searched defs:registry (Results 1 - 25 of 34) sorted by null

1 2

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EmailClientConnectionManager.java 55 HttpParams params, SchemeRegistry registry, TrackingKeyManager keyManager) {
56 super(params, registry);
63 // Create a registry for our three schemes; http and https will use built-in factories
64 SchemeRegistry registry = new SchemeRegistry(); local
65 registry.register(new Scheme("http",
67 registry.register(new Scheme("https",
71 registry.register(new Scheme("httpts",
74 return new EmailClientConnectionManager(params, registry, keyManager);
87 SchemeRegistry registry = getSchemeRegistry(); local
89 Scheme existing = registry.get(schemeName)
110 SchemeRegistry registry = getSchemeRegistry(); local
    [all...]
  /external/icu4c/i18n/
transreg.h 39 * the registry code and the transliterator code that deadlocks.
67 * it when the registry mutex is NOT held, to prevent deadlock.
123 * A registry of system transliterators. This is the data structure
126 * transliterators. There is one instance of the registry that is
129 * The registry consists of a dynamic component -- a hashtable -- and
136 * delegates all registry-related operations to it.
161 * compound) attempt to instantiate it from the registry. Return
183 * OUTSIDE THE REGISTRY MUTEX, then call this method to retry
432 * Dynamic registry mapping full IDs to Entry objects. This
437 Hashtable registry; member in class:TransliteratorRegistry
    [all...]
translit.cpp 89 * The mutex controlling access to registry object.
94 * System transliterator registry; non-null when initialized.
96 static U_NAMESPACE_QUALIFIER TransliteratorRegistry* registry = 0; variable
98 // Macro to check/initialize the registry. ONLY USE WITHIN
99 // MUTEX. Avoids function call when registry is initialized.
100 #define HAVE_REGISTRY(status) (registry!=0 || initializeRegistry(status))
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 95 // Obtain the registry of cookie specs
96 CookieSpecRegistry registry= (CookieSpecRegistry) context.getAttribute( local
98 if (registry == null) {
99 this.log.info("CookieSpec registry not available in HTTP context");
147 CookieSpec cookieSpec = registry.getCookieSpec(policy, request.getParams());
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 114 AuthSchemeRegistry registry = (AuthSchemeRegistry) context.getAttribute( local
116 if (registry == null) {
117 throw new IllegalStateException("AuthScheme registry not set in HTTP context");
141 authScheme = registry.getAuthScheme(id, response.getParams());
DefaultHttpClient.java 164 SchemeRegistry registry = new SchemeRegistry(); local
165 registry.register(
167 registry.register(
196 connManager = factory.newInstance(params, registry);
198 connManager = new SingleClientConnManager(getParams(), registry);
237 AuthSchemeRegistry registry = new AuthSchemeRegistry(); local
238 registry.register(
241 registry.register(
244 return registry;
250 CookieSpecRegistry registry = new CookieSpecRegistry() local
    [all...]
  /packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
PostNotification.java 218 SchemeRegistry registry = new SchemeRegistry(); local
219 registry.register(
224 registry.register(scheme);
252 connManager = factory.newInstance(params, registry);
254 connManager = new SingleClientConnManager(getParams(), registry);
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper.cc 294 ProtocolHandlerRegistry* registry = profile()->GetProtocolHandlerRegistry(); local
298 registry->CanSchemeBeOverridden(handler->protocol())) {
299 tab_contents()->AddInfoBar(registry->IsAlreadyRegistered(handler) ?
304 new RegisterProtocolHandlerInfoBarDelegate(tab_contents(), registry,
  /external/freetype/src/sfnt/
sfdriver.c 347 BDF_PropertyRec encoding, registry; local
357 error = tt_face_find_bdf_prop( face, "CHARSET_REGISTRY", &registry );
363 if ( registry.type == BDF_PROPERTY_TYPE_ATOM &&
367 *acharset_registry = registry.u.atom;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintRunner.java 156 DetectorRegistry registry = LintEclipseContext.getRegistry(); local
157 LintEclipseContext toolContext = new LintEclipseContext(registry, mResource,
162 mLint = new Lint(registry, toolContext, scope);
LintListDialog.java 219 DetectorRegistry registry = LintEclipseContext.getRegistry(); local
220 Issue issue = registry.getIssue(id);
  /sdk/lint/cli/src/com/android/tools/lint/
Main.java 82 DetectorRegistry registry = new BuiltinDetectorRegistry(); local
99 if (!registry.isIssueId(id)) {
101 displayValidIds(registry);
114 if (!registry.isIssueId(id)) {
116 displayValidIds(registry);
158 private void displayValidIds(DetectorRegistry registry) {
159 List<Issue> issues = registry.getIssues();
  /external/dbus/bus/
services.c 44 BusRegistry *registry; member in struct:BusService
76 BusRegistry *registry; local
78 registry = dbus_new0 (BusRegistry, 1);
79 if (registry == NULL)
82 registry->refcount = 1;
83 registry->context = context;
85 registry->service_hash = _dbus_hash_table_new (DBUS_HASH_STRING,
87 if (registry->service_hash == NULL)
90 registry->service_pool = _dbus_mem_pool_new (sizeof (BusService),
93 if (registry->service_pool == NULL
    [all...]
bus.c 60 BusRegistry *registry; member in struct:BusContext
652 if (!bus_registry_set_service_context_table (context->registry,
726 context->registry = bus_registry_new (context);
727 if (context->registry == NULL)
1050 if (context->registry)
1052 bus_registry_unref (context->registry);
1053 context->registry = NULL;
1145 return context->registry;
    [all...]
driver.c 184 create_unique_client_name (BusRegistry *registry,
233 if (bus_registry_lookup (registry, str) == NULL)
252 BusRegistry *registry; local
287 registry = bus_connection_get_registry (connection);
289 if (!create_unique_client_name (registry, &unique_name))
312 service = bus_registry_ensure (registry,
379 BusRegistry *registry; local
386 registry = bus_connection_get_registry (connection);
395 if (!bus_registry_list_services (registry, &services, &len))
568 BusRegistry *registry; local
631 BusRegistry *registry; local
693 BusRegistry *registry; local
1075 BusRegistry *registry; local
1158 BusRegistry *registry; local
1263 BusRegistry *registry; local
1339 BusRegistry *registry; local
1415 BusRegistry *registry; local
1490 BusRegistry *registry; local
    [all...]
activation.c 1914 BusRegistry *registry; local
    [all...]
dispatch.c 303 BusRegistry *registry; local
307 registry = bus_connection_get_registry (connection);
310 service = bus_registry_lookup (registry, &service_string);
    [all...]
signals.c 1537 BusRegistry *registry; local
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
WireFormatTest.java 161 ExtensionRegistry registry = TestUtil.getExtensionRegistry(); local
164 TestAllExtensions.parseFrom(rawBytes, registry);
174 ExtensionRegistry registry = TestUtil.getExtensionRegistry(); local
177 TestPackedExtensions.parseFrom(rawBytes, registry);
197 // Try again using a full extension registry.
198 ExtensionRegistry registry = TestUtil.getExtensionRegistry(); local
201 TestAllExtensionsLite.parseFrom(rawBytes, registry);
211 ExtensionRegistryLite registry = TestUtil.getExtensionRegistryLite(); local
214 TestPackedExtensionsLite.parseFrom(rawBytes, registry);
TestUtil.java 1154 ExtensionRegistry registry = ExtensionRegistry.newInstance(); local
1160 ExtensionRegistryLite registry = ExtensionRegistryLite.newInstance(); local
    [all...]
  /external/freetype/include/freetype/
t1tables.h 357 FT_String* registry; member in struct:CID_FaceInfoRec_
  /external/freetype/src/cff/
cfftypes.h 269 FT_String* registry; member in struct:CFF_FontRec_
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 60 // global registry, which is where flags defined via DEFINE_foo()
62 // different registry you create. (In practice, multiple registries
68 // CommandLineFlag owned by that registry must acquire the
86 // GetCommandLineOption is just a hook into registry routines to
465 // should acquire the FlagRegistry lock for the registry that owns
600 // FooLocked(), you must own the registry lock before calling
618 // Store a flag in this registry. Takes ownership of the given pointer.
644 static FlagRegistry* GlobalRegistry(); // returns a singleton registry
663 static FlagRegistry* global_registry_; // a singleton registry
1328 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1410 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1524 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1537 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1561 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1704 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
1844 FlagRegistry* const registry = FlagRegistry::GlobalRegistry(); local
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 290 final ExtensionRegistry registry = local
293 if (registry != null) {
294 // We must re-parse the proto using the registry.
296 proto = FileDescriptorProto.parseFrom(descriptorBytes, registry);
    [all...]
  /prebuilt/common/http-client/
httpclient-4.1.1.jar 

Completed in 726 milliseconds

1 2