HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 26 - 50 of 1268) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/tools/ahat/src/main/com/android/ahat/
AhatHandler.java 29 * Handle the given query, rendering the page to the given document.
31 void handle(Doc doc, Query query) throws IOException; method in interface:AhatHandler
  /device/generic/goldfish/gatekeeper/
SoftGateKeeperDevice.cpp 31 // Current password and current password handle go together
67 gatekeeper::password_handle_t *handle = local
70 handle->hardware_backed = true;
  /device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/
GLESv1Dispatch.cpp 28 s_gles1.function_name = (function_name##_t)dlsym(handle, #function_name); \
33 void* handle = dlopen(DEFAULT_GLES_CM_LIB, RTLD_NOW); local
34 if (!handle) {
GLESv3Dispatch.cpp 28 s_gles3.function_name = (function_name##_t)dlsym(handle, #function_name); \
33 void* handle = dlopen(DEFAULT_GLESv2_LIB, RTLD_NOW); local
34 if (!handle) {
  /device/google/contexthub/util/stm32_flash/
spi.h 24 handle_t handle; member in struct:spi_handle
28 uint8_t spi_write_data(handle_t *handle, uint8_t *buffer, int length);
29 uint8_t spi_write_cmd(handle_t *handle, uint8_t cmd);
30 uint8_t spi_read_data(handle_t *handle, uint8_t *data, int length);
31 uint8_t spi_read_ack(handle_t *handle);
32 int spi_init(handle_t *handle);
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
SoftGateKeeperDevice.cpp 31 // Current password and current password handle go together
67 gatekeeper::password_handle_t *handle = local
70 handle->hardware_backed = true;
  /external/adhd/cras/src/common/
cras_metrics.c 15 CMetricsLibrary handle; local
18 handle = CMetricsLibraryNew();
19 CMetricsLibraryInit(handle);
20 CMetricsLibrarySendCrosEventToUMA(handle, event);
21 CMetricsLibraryDelete(handle);
27 CMetricsLibrary handle; local
30 handle = CMetricsLibraryNew();
31 CMetricsLibraryInit(handle);
32 CMetricsLibrarySendToUMA(handle, name, sample, min, max, nbuckets);
33 CMetricsLibraryDelete(handle);
38 CMetricsLibrary handle; local
    [all...]
  /external/curl/tests/libtest/
lib1550.c 30 CURLM *handle; local
38 handle = curl_multi_init();
41 curl_multi_setopt(handle, CURLMOPT_PIPELINING_SERVER_BL, bl_servers);
42 curl_multi_setopt(handle, CURLMOPT_PIPELINING_SITE_BL, bl_sites);
43 curl_multi_cleanup(handle);
lib658.c 34 CURL *handle = NULL; local
40 easy_init(handle);
56 easy_setopt(handle, CURLOPT_URL, "http://www.example.com");
58 easy_setopt(handle, CURLOPT_CURLU, urlp);
59 easy_setopt(handle, CURLOPT_VERBOSE, 1L);
61 res = curl_easy_perform(handle);
72 curl_easy_cleanup(handle);
  /external/libxcam/xcore/
drm_v4l2_buffer.cpp 29 int handle = _display->get_drm_handle (); local
30 if (handle > 0) {
33 gem.handle = _gem_handle;
34 xcam_device_ioctl (handle, DRM_IOCTL_MODE_DESTROY_DUMB, &gem);
  /external/skia/tools/skiaserve/urlhandlers/
ClipAlphaHandler.cpp 22 int ClipAlphaHandler::handle(Request* request, MHD_Connection* connection, function in class:ClipAlphaHandler
InfoHandler.cpp 22 int InfoHandler::handle(Request* request, MHD_Connection* connection, function in class:InfoHandler
OpBoundsHandler.cpp 22 int OpBoundsHandler::handle(Request* request, MHD_Connection* connection, const char* url, function in class:OpBoundsHandler
OpsHandler.cpp 21 int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url, function in class:OpsHandler
PostHandler.cpp 35 int PostHandler::handle(Request* request, MHD_Connection* connection, function in class:PostHandler
  /external/skqp/tools/skiaserve/urlhandlers/
ClipAlphaHandler.cpp 22 int ClipAlphaHandler::handle(Request* request, MHD_Connection* connection, function in class:ClipAlphaHandler
InfoHandler.cpp 22 int InfoHandler::handle(Request* request, MHD_Connection* connection, function in class:InfoHandler
OpBoundsHandler.cpp 22 int OpBoundsHandler::handle(Request* request, MHD_Connection* connection, const char* url, function in class:OpBoundsHandler
OpsHandler.cpp 21 int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url, function in class:OpsHandler
PostHandler.cpp 35 int PostHandler::handle(Request* request, MHD_Connection* connection, function in class:PostHandler
  /external/webrtc/webrtc/modules/audio_processing/aec/
echo_cancellation_unittest.cc 28 void* handle = WebRtcAec_Create(); local
29 ASSERT_TRUE(handle);
31 WebRtcAec_Free(handle);
35 void* handle = WebRtcAec_Create(); local
36 ASSERT_TRUE(handle);
38 AecCore* aec_core = WebRtcAec_aec_core(handle);
41 // level |aec_core| handle.
45 WebRtcAec_Free(handle);
  /bionic/tests/libs/
segment_gap_outer.cpp 19 void *handle = android_dlopen_ext("libsegment_gap_inner.so", RTLD_NOW, &info); local
20 if (!handle) {
24 return dlsym(handle, "inner");
  /bootable/recovery/tests/unit/
zip_test.cpp 36 ZipArchiveHandle handle; local
37 ASSERT_EQ(0, OpenArchiveFromMemory(map.addr, map.length, zip_path.c_str(), &handle));
43 ASSERT_EQ(0, FindEntry(handle, binary_path, &binary_entry));
47 ASSERT_EQ(0, ExtractEntryToFile(handle, &binary_entry, tmp_binary.fd));
49 CloseArchive(handle);
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_BasicLoaderTest.cpp 39 void* handle = dlopen(kTestLibName, RTLD_NOW); local
40 if (handle == nullptr) {
45 void* taxicab_number = dlsym(handle, "dlopen_testlib_taxicab_number");
51 dlclose(handle);
  /device/generic/goldfish/wifi/wifi_hal/
info.cpp 23 auto handle = reinterpret_cast<wifi_interface_handle>(&mInterfaces.back()); local
24 mInterfaceHandles.emplace_back(handle);

Completed in 865 milliseconds

12 3 4 5 6 7 8 91011>>