/external/clang/test/CodeGen/ |
2002-01-24-HandleCallInsnSEGV.c | 5 void ap_os_dso_unload(void *handle) 7 dlclose(handle);
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
fake_core_interface.cc | 9 void FakeCoreInterface::AddRefResource(PP_Resource handle) { 10 return resource_manager_.AddRef(handle); 13 void FakeCoreInterface::ReleaseResource(PP_Resource handle) { 14 return resource_manager_.Release(handle);
|
/external/chromium_org/content/common/ |
socket_stream_handle_data.cc | 16 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));
|
/external/webrtc/src/modules/audio_processing/utility/ |
ring_buffer.h | 19 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);
|
delay_estimator_wrapper.h | 21 // - 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 : Updated instance [all...] |
delay_estimator.c | 62 int WebRtc_FreeBinaryDelayEstimator(BinaryDelayEstimator* handle) { 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->binary_far_history) [all...] |
/external/libsepol/include/sepol/ |
debug.h | 4 #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/ |
elff_api.cc | 34 elff_close(ELFF_HANDLE handle)
36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle)
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,
57 assert(handle != NULL && address_info != NULL);
58 if (handle == NULL || address_info == NULL) { [all...] |
/ndk/sources/host-tools/ndk-stack/elff/ |
elff_api.cc | 34 elff_close(ELFF_HANDLE handle) 36 if (handle != NULL) { 37 delete reinterpret_cast<ElfFile*>(handle); 42 elff_is_exec(ELFF_HANDLE handle) 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, 57 assert(handle != NULL && address_info != NULL); 58 if (handle == NULL || address_info == NULL) [all...] |
/hardware/samsung_slsi/exynos5/include/ |
exynos_rotator.h | 44 * Create librotator handle 49 * librotator handle 54 * Destroy librotator handle 58 * \param handle 59 * librotator handle[in] 62 void *handle); 69 * \param handle 70 * librotator handle[in] 100 void *handle, 115 * \param handle [all...] |
/external/chromium_org/mojo/system/ |
platform_channel_handle.h | 30 PlatformChannelHandle() : handle(INVALID_HANDLE_VALUE) {} 31 explicit PlatformChannelHandle(HANDLE handle) : handle(handle) {} 35 bool is_valid() const { return handle != INVALID_HANDLE_VALUE; } 37 HANDLE handle;
|
/external/chromium_org/ppapi/shared_impl/ |
platform_file.cc | 11 base::PlatformFile IntToPlatformFile(int32_t handle) { 13 return reinterpret_cast<HANDLE>(static_cast<intptr_t>(handle)); 15 return handle; 21 int32_t PlatformFileToInt(base::PlatformFile handle) { 23 return static_cast<int32_t>(reinterpret_cast<intptr_t>(handle)); 25 return handle;
|
/external/chromium_org/content/common/gpu/ |
image_transport_surface_linux.cc | 13 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()));
|
/external/chromium_org/mojo/public/utility/ |
run_loop_handler.h | 13 // Used by RunLoop to notify when a handle is either ready or has become 17 virtual void OnHandleReady(const Handle& handle) = 0; 18 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0;
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/beos/ |
SDL_sysloadso.c | 37 void *handle = NULL; local 42 handle = (void *) (library_id); 44 return (handle); 48 SDL_LoadFunction(void *handle, const char *name) 51 image_id library_id = (image_id) handle; 60 SDL_UnloadObject(void *handle) 63 if (handle != NULL) { 64 library_id = (image_id) handle;
|
/external/qemu/distrib/sdl-1.2.15/src/loadso/mint/ |
SDL_sysloadso.c | 38 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) 48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle); 55 void SDL_UnloadObject(void *handle) 57 if ( handle != NULL ) { 58 ldg_close((LDG *)handle, ldg_global);
|
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/ |
EASLib.h | 28 EAS_EXPORT EAS_LibShutdown (EAS_DATA_HANDLE handle) 30 EAS_Shutdown(handle);
|
/frameworks/base/opengl/java/android/opengl/ |
EGLObjectHandle.java | 27 protected EGLObjectHandle(int handle) { 28 mHandle = handle; 32 * Returns the native handle of the wrapped EGL object. This handle can be 35 * For example, EGLDisplay dpy = (EGLDisplay)handle; 37 * @return the native handle of the wrapped EGL object.
|
/frameworks/native/opengl/tools/glgen/static/egl/ |
EGLObjectHandle.java | 27 protected EGLObjectHandle(int handle) { 28 mHandle = handle; 32 * Returns the native handle of the wrapped EGL object. This handle can be 35 * For example, EGLDisplay dpy = (EGLDisplay)handle; 37 * @return the native handle of the wrapped EGL object.
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/ |
Exynos_OSAL_Library.h | 38 void *Exynos_OSAL_dlsym(void *handle, const char *symbol); 39 int Exynos_OSAL_dlclose(void *handle);
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prcountr.h | 54 ** 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 returned fro 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/ |
SDL_ataridevmouse.c | 42 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_SETFL, r) [all...] |
/frameworks/native/services/sensorservice/ |
BatteryService.h | 34 status_t noteStartSensor(int uid, int handle); 35 status_t noteStopSensor(int uid, int handle); 37 void enableSensorImpl(uid_t uid, int handle); 38 void disableSensorImpl(uid_t uid, int handle); 43 int handle; member in struct:android::BatteryService::Info 45 Info() : uid(0), handle(0), count(0) { } 46 Info(uid_t uid, int handle) : uid(uid), handle(handle), count(0) { } 48 return (uid == rhs.uid) ? (handle < rhs.handle) : (uid < rhs.uid) [all...] |
/external/chromium/net/base/ |
crypto_module_nss.cc | 16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { 17 return new CryptoModule(handle); 20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
|
/external/chromium_org/net/base/ |
crypto_module_nss.cc | 16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { 17 return new CryptoModule(handle); 20 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
|