HomeSort by relevance Sort by last modified time
    Searched defs:context (Results 451 - 475 of 5241) sorted by null

<<11121314151617181920>>

  /external/avb/libavb_atx/
avb_atx_validate.c 36 AvbSHA256Ctx context; local
37 avb_sha256_init(&context);
38 avb_sha256_update(&context, data, length);
39 uint8_t* tmp = avb_sha256_final(&context);
47 AvbSHA512Ctx context; local
48 avb_sha512_init(&context);
49 avb_sha512_update(&context, data, length);
50 uint8_t* tmp = avb_sha512_final(&context);
  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 48 jlong context[2]; local
49 env->GetLongArrayRegion(ctx, 0, 2, context);
50 size_t input_size = context[1];
51 context[0] = 0;
76 context[0] = reinterpret_cast<jlong>(handle);
82 env->SetLongArrayRegion(ctx, 0, 2, context);
108 jlong context[2]; local
109 env->GetLongArrayRegion(ctx, 0, 2, context);
110 DecoderHandle* handle = getHandle(reinterpret_cast<void*>(context[0]));
111 context[1] = 0; /* ERROR *
161 jlong context[2]; local
187 jlong context[2]; local
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeRef.java 24 final long context; field in class:NativeRef
26 NativeRef(long context) {
27 if (context == 0) {
28 throw new NullPointerException("context == 0");
31 this.context = context;
40 return ((NativeRef) o).context == context;
45 return (int) context;
51 if (context != 0)
    [all...]
  /external/curl/docs/examples/
htmltitle.cpp 51 // libxml callback context structure
54 struct Context
56 Context(): addTitle(false) { }
139 Context *context = (Context *)voidContext; local
142 context->title = "";
143 context->addTitle = true;
155 Context *context = (Context *)voidContext local
181 Context *context = (Context *)voidContext; local
194 Context *context = (Context *)voidContext; local
242 Context context; local
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
InstrumentationDriver.java 61 private final DroidDriverContext<View, ViewElement> context; field in class:InstrumentationDriver
66 context = new DroidDriverContext<View, ViewElement>(instrumentation, this);
68 uiDevice = new InstrumentationUiDevice(context);
78 return context.newRootElement(findRootView());
83 return new ViewElement(context, rawElement, parent);
  /external/flatbuffers/grpc/samples/greeter/
client.cpp 24 grpc::ClientContext context; local
26 auto status = stub_->SayHello(&context, request_msg, &response_msg);
48 grpc::ClientContext context; local
50 auto stream = stub_->SayManyHellos(&context, request_msg);
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
LocalUriFetcher.java 4 import android.content.Context;
23 private final Context context; field in class:LocalUriFetcher
31 * @param context A context (this will be weakly referenced and the load will fail if the weak reference
36 public LocalUriFetcher(Context context, Uri uri) {
37 this.context = context.getApplicationContext();
43 ContentResolver contentResolver = context.getContentResolver()
    [all...]
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer_unittest.cc 70 ExceptionHandler::CrashContext context; local
71 memset(&context, 0, sizeof(context));
74 context.tid = child;
101 ASSERT_TRUE(WriteMicrodump(child, &context, sizeof(context), mappings));
  /external/google-breakpad/src/client/solaris/handler/
solaris_lwp.h 73 typedef bool (*LwpCallback)(lwpstatus_t* lsp, void *context);
78 typedef bool (*ModuleCallback)(const ModuleInfo &module_info, void *context);
83 typedef bool (*LwpidCallback)(int lwpid, void *context);
90 // Callback context;
91 void *context; member in struct:google_breakpad::CallbackParam
93 CallbackParam() : call_back(NULL), context(NULL) {
97 call_back(func), context(func_context) {
146 // Finds a signal context on the stack given the ebp of our signal handler.
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
PageTestBase.java 41 protected IHTMLReportContext context; field in class:PageTestBase
51 context = new IHTMLReportContext() {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
MethodContextResolutionTest.java 24 import com.github.javaparser.symbolsolver.core.resolution.Context;
54 Context context = new MethodContext(md, typeSolver); local
56 SymbolReference<ResolvedTypeDeclaration> ref = context.solveType("LocalClass", new MemoryTypeSolver());
  /external/libchrome/base/
md5_unittest.cc 209 // as an independently-calculated digest, and also does not modify the context.
211 // Independent context over the header.
215 // Independent context over entire input.
219 // Context intermediate digest will be calculated from.
220 MD5Context context; local
221 MD5Init(&context);
226 MD5Update(&context, kHeader);
234 MD5IntermediateFinal(&header_digest, &context);
236 MD5Update(&context, kBody);
243 MD5Final(&digest, &context);
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
MemoryPressureListener.java 9 import android.content.Context;
50 private static void registerSystemCallback(Context context) {
51 context.registerComponentCallbacks(
PowerMonitor.java 8 import android.content.Context;
40 Context context = ContextUtils.getApplicationContext();
43 Intent batteryStatusIntent = context.registerReceiver(null, ifilter);
49 context.registerReceiver(new BroadcastReceiver() {
51 public void onReceive(Context context, Intent intent) {
  /external/libmojo/mojo/edk/js/
waiting_callback.cc 57 v8::Handle<v8::Context> context = isolate->GetCurrentContext(); local
58 runner_ = gin::PerContextData::From(context)->runner()->GetWeakPtr();
60 ->SetPrivate(context, GetHiddenPropertyName(isolate), callback)
77 ->GetPrivate(runner_->GetContextHolder()->context(),
  /external/libmojo/mojo/edk/system/
wait_set_dispatcher.h 33 uintptr_t context) override;
43 uintptr_t context,
60 uintptr_t context; member in struct:mojo::edk::WaitSetDispatcher::WaitState
67 // Signal that the dispatcher indexed by |context| has been woken up with
69 void WakeDispatcher(MojoResult result, uintptr_t context);
waiter_unittest.cc 40 uintptr_t* context,
47 *context = context_;
63 uintptr_t context = static_cast<uintptr_t>(-1); variable
67 result = waiter_.Wait(deadline_, &context);
74 context_ = context;
93 uintptr_t context; local
103 thread.WaitUntilDone(&result, &context, &elapsed);
105 EXPECT_EQ(1u, context);
114 thread.WaitUntilDone(&result, &context, &elapsed);
116 EXPECT_EQ(2u, context);
213 uintptr_t context = 123; local
244 uintptr_t context; local
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
serialization_warning_unittest.cc 52 mojo::internal::SerializationContext context; local
54 mojo::internal::PrepareToSerialize<T>(obj, &context));
56 mojo::internal::Serialize<T>(obj, &buf, &data, &context);
67 mojo::internal::SerializationContext context; local
69 mojo::internal::PrepareToSerialize<T>(obj, &context));
71 mojo::internal::Serialize<T>(obj, &buf, &data, validate_params, &context);
81 mojo::internal::SerializationContext context; local
83 mojo::internal::PrepareToSerialize<T>(obj, false, &context));
85 mojo::internal::Serialize<T>(obj, &buf, &data, false, &context);
  /external/libxcam/modules/ocl/
cl_demo_handler.cpp 33 CLDemoImageHandler::CLDemoImageHandler (const SmartPtr<CLContext> &context)
34 : CLImageHandler (context, "cl_demo_handler")
54 SmartPtr<CLContext> context = CLDevice::instance ()->get_context (); local
68 SmartPtr<CLImage> input_image = convert_to_climage (context, input, desc);
69 SmartPtr<CLImage> output_image = convert_to_climage (context, output, desc);
88 create_cl_demo_image_handler (const SmartPtr<CLContext> &context)
93 demo_kernel = new CLImageKernel (context);
100 demo_handler = new CLDemoImageHandler (context);
108 create_cl_binary_demo_image_handler (const SmartPtr<CLContext> &context, const uint8_t *binary, size_t size)
114 demo_kernel = new CLImageKernel (context, "kernel_demo")
    [all...]
cl_rgb_pipe_handler.cpp 35 CLRgbPipeImageKernel::CLRgbPipeImageKernel (const SmartPtr<CLContext> &context)
36 : CLImageKernel (context, "kernel_rgb_pipe")
40 CLRgbPipeImageHandler::CLRgbPipeImageHandler (const SmartPtr<CLContext> &context, const char *name)
41 : CLImageHandler (context, name)
78 SmartPtr<CLContext> context = get_context (); local
93 SmartPtr<CLImage> image_in = convert_to_climage (context, input, desc);
94 SmartPtr<CLImage> image_out = convert_to_climage (context, output, desc);
134 create_cl_rgb_pipe_image_handler (const SmartPtr<CLContext> &context)
139 rgb_pipe_kernel = new CLRgbPipeImageKernel (context);
146 rgb_pipe_handler = new CLRgbPipeImageHandler (context, "cl_handler_rgb_pipe")
    [all...]
cl_video_buffer.cpp 81 const SmartPtr<CLContext> &context, const VideoBufferInfo &info, const SmartPtr<CLVideoBufferData> &data)
83 , CLBuffer (context)
128 SmartPtr<CLContext> context = CLDevice::instance ()->get_context (); local
130 SmartPtr<CLBuffer> buf = new CLBuffer (context, buffer_info.size);
139 SmartPtr<CLContext> context = CLDevice::instance ()->get_context (); local
144 SmartPtr<CLVideoBuffer> buf = new CLVideoBuffer (context, info, cl_data);
  /external/libxcam/tests/
test-binary-kernel.cpp 114 SmartPtr<CLContext> context; local
115 context = CLDevice::instance ()->get_context ();
116 SmartPtr<CLKernel> kernel = new CLKernel (context, kernel_name);
  /external/libxcam/xcore/
calibration_parser.cpp 196 std::vector<char> context; local
205 context.resize (file_size + 1);
207 WARNING, xcam_ret_is_ok (ret = file_reader.read_file (&context[0], file_size)), ret,
210 context[file_size] = '\0';
212 return parse_intrinsic_param (&context[0], intrinsic_param);
222 std::vector<char> context; local
231 context.resize (file_size + 1);
233 WARNING, xcam_ret_is_ok (ret = file_reader.read_file (&context[0], file_size)), ret,
236 context[file_size] = '\0';
238 return parse_extrinsic_param (&context[0], extrinsic_param)
    [all...]
  /external/libxkbcommon/xkbcommon/src/compose/
state.c 43 uint32_t context; member in struct:xkb_compose_state
61 state->context = 0;
92 uint32_t context; local
108 node = &darray_item(state->table->nodes, state->context);
110 context = (node->is_leaf ? 0 : node->u.successor);
111 node = &darray_item(state->table->nodes, context);
114 context = node->next;
115 node = &darray_item(state->table->nodes, context);
119 context = 0;
121 state->prev_context = state->context;
    [all...]
  /external/llvm/test/Bindings/OCaml/
executionengine.ml 17 let context = global_context () var
18 let i8_type = Llvm.i8_type context
19 let i32_type = Llvm.i32_type context
20 let i64_type = Llvm.i64_type context
21 let double_type = Llvm.double_type context
104 let ty = DataLayout.intptr_type context dl in

Completed in 724 milliseconds

<<11121314151617181920>>