/external/lzma/CPP/Windows/ |
Handle.h | 1 // Windows/Handle.h
11 HANDLE _handle;
13 operator HANDLE() { return _handle; }
26 void Attach(HANDLE handle) { _handle = handle; }
27 HANDLE Detach()
29 HANDLE handle = _handle;
local 31 return handle;
[all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_handle_table.h | 30 * Generic handle table. 70 * Returns a zero handle on failure (out of memory). 81 unsigned handle, 87 * Returns NULL for an invalid handle. 91 unsigned handle); 96 unsigned handle); 109 unsigned handle);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/dc/ |
SDL_systhread.c | 34 thread->handle = thd_create(SDL_RunThread,args); 35 if (thread->handle == NULL) { 54 thd_wait(thread->handle); 59 thd_destroy(thread->handle);
|
/external/webrtc/src/modules/audio_processing/ |
high_pass_filter_impl.h | 41 virtual int InitializeHandle(void* handle) const; 42 virtual int ConfigureHandle(void* handle) const; 43 virtual int DestroyHandle(void* handle) const; 45 virtual int GetHandleError(void* handle) const;
|
level_estimator_impl.h | 42 virtual int InitializeHandle(void* handle) const; 43 virtual int ConfigureHandle(void* handle) const; 44 virtual int DestroyHandle(void* handle) const; 46 virtual int GetHandleError(void* handle) const;
|
noise_suppression_impl.h | 43 virtual int InitializeHandle(void* handle) const; 44 virtual int ConfigureHandle(void* handle) const; 45 virtual int DestroyHandle(void* handle) const; 47 virtual int GetHandleError(void* handle) const;
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/ |
CWsm.h | 46 uint32_t handle; member in class:CWsm 51 uint32_t handle, 56 handle(handle),
|
/system/media/audio_utils/ |
tinysndfile.c | 70 SNDFILE *handle = (SNDFILE *) malloc(sizeof(SNDFILE)); local 71 handle->mode = SFM_READ; 72 handle->temp = NULL; 73 handle->stream = stream; 74 handle->info.format = SF_FORMAT_WAV; 172 handle->bytesPerFrame = bytesPerFrame; 173 handle->info.samplerate = samplerate; 174 handle->info.channels = channels; 177 handle->info.format |= SF_FORMAT_PCM_U8; 180 handle->info.format |= SF_FORMAT_PCM_16 297 SNDFILE *handle = (SNDFILE *) malloc(sizeof(SNDFILE)); local [all...] |
/external/bluetooth/bluedroid/bta/include/ |
bta_ag_ci.h | 48 BTA_API extern void bta_ag_ci_rx_write(UINT16 handle, char *p_data, UINT16 len); 61 BTA_API extern void bta_ag_ci_slc_ready(UINT16 handle); 74 BTA_API extern void bta_ag_ci_wbs_command (UINT16 handle, char *p_data, UINT16 len);
|
/external/chromium/net/base/ |
crypto_module_openssl.cc | 16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { 21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
|
/external/chromium_org/chrome/browser/automation/ |
testing_automation_provider_aura.cc | 17 void TestingAutomationProvider::TerminateSession(int handle, bool* success) { 21 void TestingAutomationProvider::SetWindowBounds(int handle, 24 aura::Window* window = window_tracker_->GetResource(handle);
|
/external/chromium_org/content/common/gpu/client/ |
gpu_memory_buffer_impl_android.cc | 12 gfx::GpuMemoryBufferHandle handle, 15 switch (handle.type) { 19 if (!buffer->Initialize(handle))
|
gpu_memory_buffer_impl_linux.cc | 12 gfx::GpuMemoryBufferHandle handle, 15 switch (handle.type) { 19 if (!buffer->Initialize(handle))
|
gpu_memory_buffer_impl_win.cc | 12 gfx::GpuMemoryBufferHandle handle, 15 switch (handle.type) { 19 if (!buffer->Initialize(handle))
|
gpu_memory_buffer_impl_shm.cc | 19 bool GpuMemoryBufferImplShm::Initialize(gfx::GpuMemoryBufferHandle handle) { 20 if (!base::SharedMemory::IsHandleValid(handle.handle)) 22 shared_memory_.reset(new base::SharedMemory(handle.handle, false)); 50 gfx::GpuMemoryBufferHandle handle; local 51 handle.type = gfx::SHARED_MEMORY_BUFFER; 52 handle.handle = shared_memory_->handle(); [all...] |
/external/chromium_org/net/base/ |
crypto_module_openssl.cc | 16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { 21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
|
/hardware/ti/omap4xxx/ion/ |
ion.h | 27 struct ion_handle **handle); 29 struct ion_handle **handle, size_t *stride); 30 int ion_free(int fd, struct ion_handle *handle); 31 int ion_map(int fd, struct ion_handle *handle, size_t length, int prot, 33 int ion_share(int fd, struct ion_handle *handle, int *share_fd); 34 int ion_import(int fd, int share_fd, struct ion_handle **handle);
|
/system/core/fastboot/ |
usb_windows.c | 52 /// Handle to USB interface 55 /// Handle to USB read pipe (endpoint) 58 /// Handle to USB write pipe (endpoint) 70 int recognized_device(usb_handle* handle, ifc_match_func callback); 75 /// Writes data to the opened usb handle 76 int usb_write(usb_handle* handle, const void* data, int len); 78 /// Reads data using the opened usb handle 79 int usb_read(usb_handle *handle, void* data, int len); 81 /// Cleans up opened usb handle 82 void usb_cleanup_handle(usb_handle* handle); 324 usb_handle* handle = NULL; local [all...] |
/system/extras/ext4_utils/ |
ext4_jbd2.h | 42 #define ext4_journal_get_undo_access(handle, bh) __ext4_journal_get_undo_access(__func__, (handle), (bh)) 43 #define ext4_journal_get_write_access(handle, bh) __ext4_journal_get_write_access(__func__, (handle), (bh)) 44 #define ext4_forget(handle, is_metadata, inode, bh, block_nr) __ext4_forget(__func__, (handle), (is_metadata), (inode), (bh), (block_nr)) 45 #define ext4_journal_get_create_access(handle, bh) __ext4_journal_get_create_access(__func__, (handle), (bh)) 46 #define ext4_handle_dirty_metadata(handle, inode, bh) __ext4_handle_dirty_metadata(__func__, (handle), (inode), (bh) [all...] |
/bionic/libc/netbsd/nameser/ |
ns_parse.c | 74 int ns_msg_getflag(ns_msg handle, int flag) { 75 return((u_int32_t)((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift); 103 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) { 107 memset(handle, 0x5e, sizeof *handle); 108 handle->_msg = msg; 109 handle->_eom = eom; 112 NS_GET16(handle->_id, msg); 115 NS_GET16(handle->_flags, msg); 119 NS_GET16(handle->_counts[i], msg) [all...] |
/external/chromium/crypto/ |
scoped_capi_types.h | 22 void operator()(CAPIHandle handle) const { 23 if (handle) { 24 BOOL ok = Destroyer(handle); 36 void operator()(CAPIHandle handle) const { 37 if (handle) { 38 BOOL ok = Destroyer(handle, flags); 51 explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {} 57 void reset(CAPIHandle handle = NULL) { 58 if (handle_ != handle) { [all...] |
/external/chromium_org/crypto/ |
scoped_capi_types.h | 21 void operator()(CAPIHandle handle) const { 22 if (handle) { 23 BOOL ok = Destroyer(handle); 35 void operator()(CAPIHandle handle) const { 36 if (handle) { 37 BOOL ok = Destroyer(handle, flags); 50 explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {} 56 void reset(CAPIHandle handle = NULL) { 57 if (handle_ != handle) { [all...] |
/external/chromium_org/ipc/ |
ipc_platform_file.cc | 13 PlatformFileForTransit GetFileHandleForProcess(base::PlatformFile handle, 21 if (handle == INVALID_HANDLE_VALUE || 23 handle, 34 // When we're not closing the source, we need to duplicate the handle and take 36 // generate IPC messages, and the handle must remain valid until it's sent to 38 // close the source handle before the message is sent, creating a race 40 int fd = close_source_handle ? handle : ::dup(handle);
|
/hardware/samsung_slsi/exynos5/libexynosutils/ |
ExynosMutex.cpp | 200 void *handle) 202 if (handle == NULL) { 203 ALOGE("%s::handle is null", __func__); 207 if (((ExynosMutex *)handle)->getCreatedStatus() == true) 208 ((ExynosMutex *)handle)->destroy(); 210 delete (ExynosMutex *)handle; 216 void *handle) 218 if (handle == NULL) { 219 ALOGE("%s::handle is null", __func__); 223 return ((ExynosMutex *)handle)->lock() [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeIterator.java | 116 /** Return a handle to the filter used to screen nodes. 139 int handle=dtm_iter.getRoot(); local 140 return dtm_iter.getDTM(handle).getNode(handle); 163 int handle=dtm_iter.nextNode(); local 164 if (handle==DTM.NULL) 166 return dtm_iter.getDTM(handle).getNode(handle); 181 int handle=dtm_iter.previousNode(); local 182 if (handle==DTM.NULL [all...] |