Searched defs:context (Results 26 - 50 of 3832) sorted by relevance

1234567891011>>

/external/qemu/distrib/libselinux/src/
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const char *context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const char *context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/chromium_org/chrome/browser/extensions/api/networking_private/
H A Dnetworking_private_factory_chromeos.h10 namespace context { namespace
35 content::BrowserContext* context) const OVERRIDE;
H A Dnetworking_private_service_client_factory.h11 namespace context { namespace
/external/chromium_org/chrome/browser/extensions/signin/
H A Dscoped_gaia_auth_extension.cc11 content::BrowserContext* context)
12 : browser_context_(context) {
10 ScopedGaiaAuthExtension( content::BrowserContext* context) argument
/external/chromium_org/chrome/browser/signin/
H A Dfake_profile_oauth2_token_service_builder.cc12 content::BrowserContext* context) {
13 Profile* profile = Profile::FromBrowserContext(context);
21 content::BrowserContext* context) {
22 Profile* profile = Profile::FromBrowserContext(context);
11 BuildFakeProfileOAuth2TokenService( content::BrowserContext* context) argument
20 BuildAutoIssuingFakeProfileOAuth2TokenService( content::BrowserContext* context) argument
H A Dtest_signin_client_builder.cc19 content::BrowserContext* context) {
21 new TestSigninClient(static_cast<Profile*>(context)->GetPrefs());
18 BuildTestSigninClient( content::BrowserContext* context) argument
/external/chromium_org/extensions/renderer/
H A Dprint_native_handler.cc14 PrintNativeHandler::PrintNativeHandler(ScriptContext* context) argument
15 : ObjectBackedNativeHandler(context) {
H A Dtest_features_native_handler.cc15 TestFeaturesNativeHandler::TestFeaturesNativeHandler(ScriptContext* context) argument
16 : ObjectBackedNativeHandler(context) {
29 converter->ToV8Value(&source->dictionary(), context()->v8_context()));
/external/chromium_org/gin/
H A Dper_context_data_unittest.cc16 // Verifies PerContextData can be looked up by context and that it is not
21 v8::Handle<v8::Context> context = v8::Context::New( local
25 context_holder.SetContext(context);
26 PerContextData* per_context_data = PerContextData::From(context);
30 PerContextData* per_context_data = PerContextData::From(context);
/external/chromium_org/mojo/shell/
H A Din_process_dynamic_service_runner_unittest.cc5 #include "mojo/shell/context.h"
13 Context context; local
15 context.Init();
16 InProcessDynamicServiceRunner runner(&context);
/external/chromium_org/remoting/host/
H A Dchromoting_host_context_unittest.cc13 // A simple test that starts and stop the context. This tests the context
19 scoped_ptr<ChromotingHostContext> context = local
23 EXPECT_TRUE(context);
24 if (!context)
26 EXPECT_TRUE(context->audio_task_runner().get());
27 EXPECT_TRUE(context->video_capture_task_runner().get());
28 EXPECT_TRUE(context->video_encode_task_runner().get());
29 EXPECT_TRUE(context->file_task_runner().get());
30 EXPECT_TRUE(context
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioSourceNode.h39 AudioSourceNode(AudioContext* context, float sampleRate) argument
40 : AudioNode(context, sampleRate) { }
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_load_library.cpp19 crazy_context_t* context = crazy_context_create(); local
23 crazy_context_set_load_address(context, 0x20000000);
26 if (!crazy_library_open(&library, "libfoo.so", context)) {
27 Panic("Could not open library: %s\n", crazy_context_get_error(context));
44 crazy_context_destroy(context);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
H A Dpreemption.c35 void vlVdpPreemptionCallback(VdpDevice device, void *context) argument
45 void *context)
43 vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLNativeReference.java24 final long context; field in class:OpenSSLNativeReference
31 this.context = ctx;
/external/libunwind/android/tests/
H A Dlocal_test.cpp27 unw_context_t* context; local
28 context = reinterpret_cast<unw_context_t*>(malloc(sizeof(unw_context_t) + EXTRA_CONTEXT_BYTES));
29 ASSERT_TRUE(context != NULL);
30 uint8_t* extra = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(context) + sizeof(unw_context_t));
34 ASSERT_TRUE(unw_getcontext(context) == 0);
40 free(context);
/external/libunwind/src/unwind/
H A DResume.c31 struct _Unwind_Context context; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
44 _Unwind_Phase2 (exception_object, &context, &destroy_map);
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dpreemption.c35 void vlVdpPreemptionCallback(VdpDevice device, void *context) argument
45 void *context)
43 vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context) argument
/external/ppp/pppd/plugins/radius/
H A Dmd5.c8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
/external/apache-http/src/org/apache/http/
H A DConnectionReuseStrategy.java42 * <!-- empty lines above to avoid 'svn diff' context problems -->
61 * One can use the HTTP context to retrieve additional objects that
72 * @param context the context in which the connection is being
78 boolean keepAlive(HttpResponse response, HttpContext context); argument
H A DHttpRequestInterceptor.java47 * <!-- empty lines above to avoid 'svn diff' context problems -->
66 * @param context the context for the request
71 void process(HttpRequest request, HttpContext context) argument
H A DHttpResponseInterceptor.java46 * <!-- empty lines above to avoid 'svn diff' context problems -->
65 * @param context the context for the request
70 void process(HttpResponse response, HttpContext context) argument
/external/apache-http/src/org/apache/http/client/
H A DUserTokenHandler.java37 * A handler for determining if the given execution context is user specific
39 * identify the current user if the context is user specific or to be
40 * <code>null</code> if the context does not contain any resources or details
59 * identify the current user if the context is user specific or to be
62 * @param context the execution context
65 * <code>null</null> if the context is not user specific.
67 Object getUserToken(HttpContext context); argument
/external/chromium_org/athena/content/shell/
H A Dscheme_classifier_factory.cc35 content::BrowserContext* context) {
34 CreateSchemeClassifier( content::BrowserContext* context) argument

Completed in 1937 milliseconds

1234567891011>>