Searched refs:handle (Results 1 - 25 of 2234) 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/content/common/
H A Dsocket_stream_handle_data.cc16 WebSocketStreamHandle* handle, int render_view_id) {
17 if (!handle) {
22 static_cast<WebSocketStreamHandleImpl*>(handle);
23 impl->SetUserData(handle, new SocketStreamHandleData(render_view_id));
28 WebSocketStreamHandle* handle) {
29 if (!handle)
32 static_cast<WebSocketStreamHandleImpl*>(handle);
33 return static_cast<SocketStreamHandleData*>(impl->GetUserData(handle));
15 AddToHandle( WebSocketStreamHandle* handle, int render_view_id) argument
27 ForHandle( WebSocketStreamHandle* handle) argument
/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/qemu/elff/
H A Delff_api.cc34 elff_close(ELFF_HANDLE handle) argument
36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle) argument
44 assert(handle != NULL);
45 if (handle == NULL) {
49 return reinterpret_cast<ElfFile*>(handle)->is_exec();
53 elff_get_pc_address_info(ELFF_HANDLE handle, argument
57 assert(handle != NULL && address_info != NULL);
58 if (handle
72 elff_free_pc_address_info(ELFF_HANDLE handle, Elf_AddressInfo* address_info) argument
[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 ||
16 handle.transport_type == gfx::NATIVE_TRANSPORT);
18 gfx::GLSurface::CreateViewGLSurface(handle.handle);
22 manager, stub, surface.get(), handle.is_transport()));
10 CreateNativeSurface( GpuChannelManager* manager, GpuCommandBufferStub* stub, const gfx::GLSurfaceHandle& handle) argument
/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/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/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/chromium_org/base/win/
H A Dscoped_handle_unittest.cc13 base::win::ScopedHandle handle; local
18 base::win::ScopedHandle::Receiver a = handle.Receive();
23 EXPECT_EQ(handle.Get(), reinterpret_cast<HANDLE>(value));
24 HANDLE to_discard = handle.Take();
28 CreateHandle(value, handle.Receive());
29 EXPECT_EQ(handle.Get(), reinterpret_cast<HANDLE>(value));
30 to_discard = handle.Take();
/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPInputStream.java16 private SFTPv3FileHandle handle; field in class:SFTPInputStream
23 public SFTPInputStream(SFTPv3FileHandle handle) { argument
24 this.handle = handle;
38 int read = handle.getClient().read(handle, readOffset, buffer, offset, len);
62 int read = handle.getClient().read(handle, readOffset, buffer, 0, 1);
84 handle.getClient().closeFile(handle);
[all...]
H A DSFTPOutputStream.java16 private SFTPv3FileHandle handle; field in class:SFTPOutputStream
23 public SFTPOutputStream(SFTPv3FileHandle handle) { argument
24 this.handle = handle;
44 handle.getClient().write(handle, writeOffset, buffer, offset, len);
53 handle.getClient().write(handle, writeOffset, buffer, 0, 1);
65 handle.getClient().closeFile(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/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);
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
H A Dbrowserprocess.py13 def __init__(self, handle):
14 self.handle = handle
15 print 'PID', self.handle.pid
18 return self.handle.returncode
21 return self.handle.poll() is None
37 self.handle.wait()
48 self.handle.terminate()
51 self.handle.kill()
59 os.killpg(self.handle
[all...]
/external/iptables/include/libiptc/
H A Dlibip6tc.h24 int ip6tc_is_chain(const char *chain, struct ip6tc_handle *const handle);
33 const char *ip6tc_first_chain(struct ip6tc_handle *handle);
34 const char *ip6tc_next_chain(struct ip6tc_handle *handle);
38 struct ip6tc_handle *handle);
42 struct ip6tc_handle *handle);
46 struct ip6tc_handle *handle);
49 int ip6tc_builtin(const char *chain, struct ip6tc_handle *const handle);
54 struct ip6tc_handle *handle);
64 struct ip6tc_handle *handle);
70 struct ip6tc_handle *handle);
[all...]

Completed in 1939 milliseconds

1234567891011>>