HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 76 - 100 of 6298) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webrtc/webrtc/common_audio/vad/include/
webrtc_vad.h 34 // - handle [i] : Pointer to VAD instance that should be freed.
35 void WebRtcVad_Free(VadInst* handle);
39 // - handle [i/o] : Instance that should be initialized.
43 int WebRtcVad_Init(VadInst* handle);
50 // - handle [i/o] : VAD instance.
56 int WebRtcVad_set_mode(VadInst* handle, int mode);
61 // - handle [i/o] : VAD Instance. Needs to be initialized by
70 int WebRtcVad_Process(VadInst* handle, int fs, const int16_t* audio_frame,
  /frameworks/base/opengl/java/android/opengl/
EGLObjectHandle.java 32 protected EGLObjectHandle(int handle) {
33 mHandle = handle;
35 protected EGLObjectHandle(long handle) {
36 mHandle = handle;
50 * Returns the native handle of the wrapped EGL object. This handle can be
53 * For example, EGLDisplay dpy = (EGLDisplay)handle;
55 * @return the native handle of the wrapped EGL object.
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLObjectHandle.java 32 protected EGLObjectHandle(int handle) {
33 mHandle = handle;
35 protected EGLObjectHandle(long handle) {
36 mHandle = handle;
50 * Returns the native handle of the wrapped EGL object. This handle can be
53 * For example, EGLDisplay dpy = (EGLDisplay)handle;
55 * @return the native handle of the wrapped EGL object.
  /hardware/interfaces/tetheroffload/config/1.0/
IOffloadConfig.hal 35 setHandles(handle fd1, handle fd2) generates (bool success, string errMsg);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
CallbackInfo.java 28 public int handle; field in class:CallbackInfo
30 CallbackInfo(String address, int status, int handle) {
33 this.handle = handle;
  /packages/services/Car/car-lib/src/android/car/trust/
ICarTrustAgentTokenRequestDelegate.aidl 37 void removeEscrowToken(long handle, int uid);
40 void isEscrowTokenActive(long handle, int uid);
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue4029.c 11 // the opaque handle as a Go uintptr rather than a Go pointer to avoid
18 uintptr_t dlsym4029(uintptr_t handle, char* name) {
19 return (uintptr_t)(dlsym((void*)(handle), name));
22 int dlclose4029(uintptr_t handle) {
23 return dlclose((void*)(handle));
  /prebuilts/go/linux-x86/misc/cgo/test/
issue4029.c 11 // the opaque handle as a Go uintptr rather than a Go pointer to avoid
18 uintptr_t dlsym4029(uintptr_t handle, char* name) {
19 return (uintptr_t)(dlsym((void*)(handle), name));
22 int dlclose4029(uintptr_t handle) {
23 return dlclose((void*)(handle));
  /external/selinux/libsemanage/include/semanage/
booleans_active.h 7 #include <semanage/handle.h>
9 extern int semanage_bool_set_active(semanage_handle_t * handle,
13 extern int semanage_bool_query_active(semanage_handle_t * handle,
17 extern int semanage_bool_exists_active(semanage_handle_t * handle,
21 extern int semanage_bool_count_active(semanage_handle_t * handle,
24 extern int semanage_bool_iterate_active(semanage_handle_t * handle,
29 extern int semanage_bool_list_active(semanage_handle_t * handle,
fcontexts_policy.h 7 #include <semanage/handle.h>
9 extern int semanage_fcontext_query(semanage_handle_t * handle,
13 extern int semanage_fcontext_exists(semanage_handle_t * handle,
17 extern int semanage_fcontext_count(semanage_handle_t * handle,
20 extern int semanage_fcontext_iterate(semanage_handle_t * handle,
25 extern int semanage_fcontext_list(semanage_handle_t * handle,
29 extern int semanage_fcontext_list_homedirs(semanage_handle_t * handle,
  /external/webrtc/webrtc/common_audio/
ring_buffer.h 27 void WebRtc_InitBuffer(RingBuffer* handle);
28 void WebRtc_FreeBuffer(void* handle);
40 size_t WebRtc_ReadBuffer(RingBuffer* handle,
46 size_t WebRtc_WriteBuffer(RingBuffer* handle, const void* data,
54 int WebRtc_MoveReadPtr(RingBuffer* handle, int element_count);
57 size_t WebRtc_available_read(const RingBuffer* handle);
60 size_t WebRtc_available_write(const RingBuffer* handle);
  /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);
  /system/bt/bta/include/
bta_pan_ci.h 46 extern void bta_pan_ci_tx_ready(uint16_t handle);
61 extern void bta_pan_ci_rx_ready(uint16_t handle);
69 * disable data flow when it is congested and cannot handle
78 extern void bta_pan_ci_tx_flow(uint16_t handle, bool enable);
94 extern void bta_pan_ci_rx_writebuf(uint16_t handle, const RawAddress& src,
111 extern BT_HDR* bta_pan_ci_readbuf(uint16_t handle, RawAddress& src,
125 extern void bta_pan_ci_set_pfilters(uint16_t handle, uint16_t num_filters,
139 extern void bta_pan_ci_set_mfilters(uint16_t handle, uint16_t num_mcast_filters,
  /device/generic/goldfish/wifi/wifi_hal/
wifi_hal.cpp 55 wifi_error wifi_initialize(wifi_handle* handle) {
56 if (handle == nullptr) {
75 *handle = reinterpret_cast<wifi_handle>(sHalState);
80 void wifi_cleanup(wifi_handle handle, wifi_cleaned_up_handler handler) {
81 if (handle == nullptr) {
99 if (asHalState(handle)->stop(callback)) {
110 handler(handle);
113 void wifi_event_loop(wifi_handle handle) {
114 if (handle == nullptr) {
118 asHalState(handle)->eventLoop()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMChildIterNodeList.java 74 * @param parentHandle DTM node-handle integer
96 int handle=m_firstChild; local
97 while(--index>=0 && handle!=DTM.NULL) {
98 handle=m_parentDTM.getNextSibling(handle);
100 if (handle == DTM.NULL) {
103 return m_parentDTM.getNode(handle);
112 for (int handle=m_firstChild;
113 handle!=DTM.NULL;
114 handle=m_parentDTM.getNextSibling(handle))
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/tests/testdata/android_src/dlopen/
test.c 6 void *handle; local
10 handle = dlopen("libm.so.6", RTLD_LAZY);
11 if (!handle) {
16 cosine = dlsym(handle, "cos");
23 dlclose(handle);
  /device/google/cuttlefish_common/guest/monitoring/dumpstate_ext/
dumpstate_device.cpp 30 Return<void> DumpstateDevice::dumpstateBoard(const hidl_handle& handle) {
31 if (handle == nullptr || handle->numFds < 1) {
36 int fd = handle->data[0];
38 ALOGE("invalid FD: %d\n", handle->data[0]);
  /external/compiler-rt/test/asan/TestCases/Linux/
stack-trace-dlclose.cc 25 void *handle; variable
28 void *handle = dlopen(SO_DIR "/stack_trace_dlclose.so", RTLD_LAZY); local
29 assert(handle);
30 void *(*foo)() = (void *(*)())dlsym(handle, "foo");
34 dlclose(handle);
  /external/valgrind/cachegrind/tests/
dlclose.c 15 void *handle; local
19 handle = dlopen ("./myprint.so", RTLD_LAZY);
20 if (!handle) {
25 myprint = dlsym(handle, "myprint");
34 dlclose(handle);
  /external/valgrind/drd/tests/
dlopen_main.c 9 void *handle; local
13 handle = dlopen(lib, RTLD_NOW);
14 if (!handle) {
19 function = dlsym(handle, "foo");
27 dlclose(handle);
  /system/core/libutils/
NativeHandle.cpp 22 sp<NativeHandle> NativeHandle::create(native_handle_t* handle, bool ownsHandle) {
23 return handle ? new NativeHandle(handle, ownsHandle) : NULL;
26 NativeHandle::NativeHandle(native_handle_t* handle, bool ownsHandle)
27 : mHandle(handle), mOwnsHandle(ownsHandle) {
  /external/adhd/cras/src/server/
cras_alsa_helpers.h 20 /* Sets the channel layout from given format to the pcm handle.
22 * handle - Pointer to the opened pcm to set channel map to.
27 int cras_alsa_set_channel_map(snd_pcm_t *handle,
30 /* Gets the supported channel mapping of the pcm handle which matches
33 * handle - Pointer to the opened pcm to get channel map info.
38 int cras_alsa_get_channel_map(snd_pcm_t *handle,
43 * handle - Filled with a pointer to the opened pcm.
49 int cras_alsa_pcm_open(snd_pcm_t **handle, const char *dev,
54 * handle - Filled with a pointer to the opened pcm.
58 int cras_alsa_pcm_close(snd_pcm_t *handle);
    [all...]
  /external/selinux/libsemanage/src/
booleans_policy.c 10 #include "handle.h"
13 int semanage_bool_query(semanage_handle_t * handle,
18 dbase_config_t *dconfig = semanage_bool_dbase_policy(handle);
19 return dbase_query(handle, dconfig, key, response);
22 int semanage_bool_exists(semanage_handle_t * handle,
26 dbase_config_t *dconfig = semanage_bool_dbase_policy(handle);
27 return dbase_exists(handle, dconfig, key, response);
30 int semanage_bool_count(semanage_handle_t * handle, unsigned int *response)
33 dbase_config_t *dconfig = semanage_bool_dbase_policy(handle);
34 return dbase_count(handle, dconfig, response)
    [all...]
ibendports_policy.c 10 #include "handle.h"
13 int semanage_ibendport_query(semanage_handle_t *handle,
17 dbase_config_t *dconfig = semanage_ibendport_dbase_policy(handle);
19 return dbase_query(handle, dconfig, key, response);
22 int semanage_ibendport_exists(semanage_handle_t *handle,
26 dbase_config_t *dconfig = semanage_ibendport_dbase_policy(handle);
28 return dbase_exists(handle, dconfig, key, response);
31 int semanage_ibendport_count(semanage_handle_t *handle,
34 dbase_config_t *dconfig = semanage_ibendport_dbase_policy(handle);
36 return dbase_count(handle, dconfig, response)
    [all...]
ibpkeys_policy.c 10 #include "handle.h"
13 int semanage_ibpkey_query(semanage_handle_t *handle,
17 dbase_config_t *dconfig = semanage_ibpkey_dbase_policy(handle);
19 return dbase_query(handle, dconfig, key, response);
22 int semanage_ibpkey_exists(semanage_handle_t *handle,
25 dbase_config_t *dconfig = semanage_ibpkey_dbase_policy(handle);
27 return dbase_exists(handle, dconfig, key, response);
30 int semanage_ibpkey_count(semanage_handle_t *handle, unsigned int *response)
32 dbase_config_t *dconfig = semanage_ibpkey_dbase_policy(handle);
34 return dbase_count(handle, dconfig, response)
    [all...]

Completed in 942 milliseconds

1 2 34 5 6 7 8 91011>>