HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 1 - 25 of 2079) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2002-01-24-HandleCallInsnSEGV.c 5 void ap_os_dso_unload(void *handle)
7 dlclose(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/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);
Exynos_OSAL_Library.c 41 void *Exynos_OSAL_dlsym(void *handle, const char *symbol)
43 return dlsym(handle, symbol);
46 int Exynos_OSAL_dlclose(void *handle)
48 return dlclose(handle);
  /system/media/audio_utils/
tinysndfile.c 97 SNDFILE *handle = (SNDFILE *) malloc(sizeof(SNDFILE)); local
98 handle->mode = SFM_READ;
99 handle->temp = NULL;
100 handle->stream = stream;
101 handle->bytesPerFrame = bytesPerFrame;
102 handle->remaining = dataSize / bytesPerFrame;
103 handle->info.frames = handle->remaining;
104 handle->info.samplerate = samplerate;
105 handle->info.channels = channels
155 SNDFILE *handle = (SNDFILE *) malloc(sizeof(SNDFILE)); local
    [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/iproute2/include/
dlfcn.h 22 static inline void *dlsym(void *handle, const char *sym)
24 if (handle != _FAKE_DLFCN_HDL)
34 static inline int dlclose(void *handle)
36 return (handle == _FAKE_DLFCN_HDL) ? 0 : 1;
  /hardware/ti/omap4xxx/camera/inc/
VideoMetadata.h 27 void* handle; member in struct:__anon21875
  /system/core/adb/
usb_windows.c 40 /// Handle to USB interface
43 /// Handle to USB read pipe (endpoint)
46 /// Handle to USB write pipe (endpoint)
68 /// Checks if there is opened usb handle in handle_list for this device.
71 /// Checks if there is opened usb handle in handle_list for this device.
75 /// Registers opened usb handle (adds it to handle_list).
76 int register_new_device(usb_handle* handle);
79 int recognized_device(usb_handle* handle);
98 /// Writes data to the opened usb handle
99 int usb_write(usb_handle* handle, const void* data, int len)
451 usb_handle* handle = NULL; local
    [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...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPInputStream.java 16 private SFTPv3FileHandle handle; field in class:SFTPInputStream
23 public SFTPInputStream(SFTPv3FileHandle handle) {
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...]
SFTPOutputStream.java 16 private SFTPv3FileHandle handle; field in class:SFTPOutputStream
23 public SFTPOutputStream(SFTPv3FileHandle handle) {
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...]

Completed in 1951 milliseconds

1 2 3 4 5 6 7 8 91011>>