Searched refs:handle (Results 1 - 25 of 2331) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-01-24-HandleCallInsnSEGV.c5 void ap_os_dso_unload(void *handle) argument
7 dlclose(handle);
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.h21 // - handle : Pointer to the delay estimation far-end instance.
23 void WebRtc_FreeDelayEstimatorFarend(void* handle);
39 // - void* : Created |handle|. If the memory can't be allocated or
48 // - handle : Pointer to the delay estimation far-end instance.
51 // - handle : Initialized instance.
53 int WebRtc_InitDelayEstimatorFarend(void* handle);
60 void WebRtc_SoftResetDelayEstimatorFarend(void* handle, int delay_shift);
67 // - handle : Pointer to the delay estimation far-end instance.
74 // - handle : Updated far-end instance.
76 int WebRtc_AddFarSpectrumFix(void* handle, uint16_
[all...]
H A Dring_buffer.h23 int WebRtc_InitBuffer(RingBuffer* handle);
24 void WebRtc_FreeBuffer(void* handle);
36 size_t WebRtc_ReadBuffer(RingBuffer* handle,
42 size_t WebRtc_WriteBuffer(RingBuffer* handle, const void* data,
50 int WebRtc_MoveReadPtr(RingBuffer* handle, int element_count);
53 size_t WebRtc_available_read(const RingBuffer* handle);
56 size_t WebRtc_available_write(const RingBuffer* handle);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_core_interface.cc10 void FakeCoreInterface::AddRefResource(PP_Resource handle) { argument
11 return resource_manager_->AddRef(handle);
14 void FakeCoreInterface::ReleaseResource(PP_Resource handle) { argument
15 return resource_manager_->Release(handle);
/external/webrtc/src/modules/audio_processing/utility/
H A Dring_buffer.h19 int WebRtc_CreateBuffer(void** handle,
22 int WebRtc_InitBuffer(void* handle);
23 int WebRtc_FreeBuffer(void* handle);
32 size_t WebRtc_ReadBuffer(void* handle,
38 size_t WebRtc_WriteBuffer(void* handle, const void* data, size_t element_count);
45 int WebRtc_MoveReadPtr(void* handle, int element_count);
48 size_t WebRtc_available_read(const void* handle);
51 size_t WebRtc_available_write(const void* handle);
H A Ddelay_estimator_wrapper.h21 // - handle : Pointer to the delay estimation instance.
23 int WebRtc_FreeDelayEstimator(void* handle);
29 // - handle : Instance that should be created.
46 // - handle : Created instance.
48 int WebRtc_CreateDelayEstimator(void** handle,
56 // - handle : Pointer to the delay estimation instance.
59 // - handle : Initialized instance.
61 int WebRtc_InitDelayEstimator(void* handle);
67 // - handle : Pointer to the delay estimation instance.
77 // - handle
[all...]
H A Ddelay_estimator.c62 int WebRtc_FreeBinaryDelayEstimator(BinaryDelayEstimator* handle) { argument
63 assert(handle != NULL);
65 if (handle->mean_bit_counts != NULL) {
66 free(handle->mean_bit_counts);
67 handle->mean_bit_counts = NULL;
69 if (handle->bit_counts != NULL) {
70 free(handle->bit_counts);
71 handle->bit_counts = NULL;
73 if (handle->binary_far_history != NULL) {
74 free(handle
91 WebRtc_CreateBinaryDelayEstimator(BinaryDelayEstimator** handle, int max_delay, int lookahead) argument
162 WebRtc_InitBinaryDelayEstimator(BinaryDelayEstimator* handle) argument
184 WebRtc_ProcessBinarySpectrum(BinaryDelayEstimator* handle, uint32_t binary_far_spectrum, uint32_t binary_near_spectrum) argument
297 WebRtc_binary_last_delay(BinaryDelayEstimator* handle) argument
302 WebRtc_history_size(BinaryDelayEstimator* handle) argument
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dplatform_file.cc11 base::PlatformFile IntToPlatformFile(int32_t handle) { argument
13 return reinterpret_cast<HANDLE>(static_cast<intptr_t>(handle));
15 return handle;
21 int32_t PlatformFileToInt(base::PlatformFile handle) { argument
23 return static_cast<int32_t>(reinterpret_cast<intptr_t>(handle));
25 return handle;
/external/libsepol/include/sepol/
H A Ddebug.h4 #include <sepol/handle.h>
14 extern int sepol_msg_get_level(sepol_handle_t * handle);
16 extern const char *sepol_msg_get_channel(sepol_handle_t * handle);
18 extern const char *sepol_msg_get_fname(sepol_handle_t * handle);
25 extern void sepol_msg_set_callback(sepol_handle_t * handle,
31 handle,
/external/chromium_org/third_party/webrtc/common_audio/vad/include/
H A Dwebrtc_vad.h29 // - handle [o] : Pointer to the VAD instance that should be created.
32 int WebRtcVad_Create(VadInst** handle);
36 // - handle [i] : Pointer to VAD instance that should be freed.
37 void WebRtcVad_Free(VadInst* handle);
41 // - handle [i/o] : Instance that should be initialized.
45 int WebRtcVad_Init(VadInst* handle);
52 // - handle [i/o] : VAD instance.
58 int WebRtcVad_set_mode(VadInst* handle, int mode);
63 // - handle [i/o] : VAD Instance. Needs to be initialized by
72 int WebRtcVad_Process(VadInst* handle, in
[all...]
/external/chromium_org/content/common/gpu/
H A Dimage_transport_surface_linux.cc13 const gfx::GLSurfaceHandle& handle) {
14 DCHECK(handle.handle);
15 DCHECK(handle.transport_type == gfx::NATIVE_DIRECT);
17 gfx::GLSurface::CreateViewGLSurface(handle.handle);
10 CreateNativeSurface( GpuChannelManager* manager, GpuCommandBufferStub* stub, const gfx::GLSurfaceHandle& handle) argument
H A Dimage_transport_surface_win.cc27 const gfx::GLSurfaceHandle& handle) {
28 DCHECK(handle.handle);
29 DCHECK_EQ(handle.transport_type, gfx::NATIVE_DIRECT);
31 gfx::GLSurface::CreateViewGLSurface(handle.handle);
24 CreateNativeSurface( GpuChannelManager* manager, GpuCommandBufferStub* stub, const gfx::GLSurfaceHandle& handle) argument
/external/fio/os/windows/posix/include/
H A Ddlfcn.h7 int dlclose(void *handle);
8 void *dlsym(void *restrict handle, const char *restrict name);
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/
H A DSDL_sysloadso.c37 void *handle = NULL; local
42 handle = (void *) (library_id);
44 return (handle);
48 SDL_LoadFunction(void *handle, const char *name) argument
51 image_id library_id = (image_id) handle;
60 SDL_UnloadObject(void *handle) argument
63 if (handle != NULL) {
64 library_id = (image_id) handle;
/external/qemu/distrib/sdl-1.2.15/src/loadso/mint/
H A DSDL_sysloadso.c38 void *handle = (void *)ldg_open((char *)sofile, ldg_global); local
39 if ( handle == NULL ) {
42 return(handle);
45 void *SDL_LoadFunction(void *handle, const char *name) argument
48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle);
55 void SDL_UnloadObject(void *handle) argument
57 if ( handle != NULL ) {
58 ldg_close((LDG *)handle, ldg_global);
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.h28 EAS_EXPORT EAS_LibShutdown (EAS_DATA_HANDLE handle) argument
30 EAS_Shutdown(handle);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprcountr.h54 ** convention. A "handle" is returned when the counter is
56 ** handle. An API is provided to get an existing counter's handle
58 ** Similarly, a counter's name can be retrieved given its handle.
109 ** Opaque counter handle type.
124 ** handle.
138 #define PR_INIT_COUNTER_HANDLE(handle,value)\
139 (handle) = (PRCounterHandle)(value)
141 #define PR_INIT_COUNTER_HANDLE(handle,value)
151 ** PRCounterHandle to receive the handle returne
212 PRCounterHandle handle variable
309 PRCounterHandle handle variable
338 PRCounterHandle handle variable
431 PRCounterHandle handle variable
505 PRCounterHandle handle variable
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_ataridevmouse.c42 static int handle = -1; variable
61 handle = open(mousedev, 0);
65 if (handle<0) {
66 handle = open(DEVICE_NAME, 0);
69 if (handle<0) {
70 handle = -1;
75 r = fcntl(handle, F_GETFL, 0);
77 close(handle);
78 handle = -1;
84 r = fcntl(handle, F_SETF
[all...]
/external/chromium_org/net/base/
H A Dcrypto_module_nss.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
17 return new CryptoModule(handle);
20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
/external/iproute2/include/
H A Ddlfcn.h22 static inline void *dlsym(void *handle, const char *sym) argument
24 if (handle != _FAKE_DLFCN_HDL)
34 static inline int dlclose(void *handle) argument
36 return (handle == _FAKE_DLFCN_HDL) ? 0 : 1;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMChildIterNodeList.java74 * @param parentHandle DTM node-handle integer
96 int handle=m_firstChild;
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
[all...]
/external/chromium_org/base/process/
H A Dprocess.h20 explicit Process(ProcessHandle handle) : process_(handle) { argument
23 // A handle to the current process.
28 // Get/Set the handle for this process. The handle will be 0 if the process
30 ProcessHandle handle() const { return process_; } function in class:base::Process
31 void set_handle(ProcessHandle handle) { argument
32 process_ = handle;
41 // Close the process handle. This will not terminate the process.
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dstack-trace-dlclose.cc24 void *handle; variable
27 void *handle = dlopen(SO_DIR "/stack_trace_dlclose.so", RTLD_LAZY); local
28 assert(handle);
29 void *(*foo)() = (void *(*)())dlsym(handle, "foo");
33 dlclose(handle);
/external/ltrace/testsuite/ltrace.minor/
H A Dlibdl-simple.c6 void *handle; local
10 handle = dlopen ("liblibdl-simple.so", RTLD_LAZY);
11 if (!handle) {
16 test = dlsym(handle, "test_libdl");
23 dlclose(handle);
/external/valgrind/main/cachegrind/tests/
H A Ddlclose.c15 void *handle; local
19 handle = dlopen ("./myprint.so", RTLD_LAZY);
20 if (!handle) {
25 myprint = dlsym(handle, "myprint");
34 dlclose(handle);

Completed in 856 milliseconds

1234567891011>>