/external/qemu/elff/ |
elff_api.h | 28 /* Defines type for a handle used in ELFF API. */
115 * On success, this routine returns a handle that can be used in subsequent
118 * NOTE: handle returned from this routine must be closed using elff_close().
122 /* Closes a handle obtained after successful call to elff_init routine.
124 * handle - A handle to close. This handle must be a handle returned from
127 void elff_close(ELFF_HANDLE handle);
130 * handle - A handle obtained from successful call to elff_init(). [all...] |
/external/webrtc/src/modules/audio_processing/ |
voice_detection_impl.h | 48 virtual int InitializeHandle(void* handle) const; 49 virtual int ConfigureHandle(void* handle) const; 50 virtual int DestroyHandle(void* handle) const; 52 virtual int GetHandleError(void* handle) const;
|
/external/wpa_supplicant_8/src/ap/ |
vlan_util.c | 35 struct nl_sock *handle = NULL; local 55 handle = nl_socket_alloc(); 56 if (!handle) { 61 if (nl_connect(handle, NETLINK_ROUTE) < 0) { 66 if (rtnl_link_alloc_cache(handle, AF_UNSPEC, &cache) < 0) { 108 if (rtnl_link_add(handle, rlink, NLM_F_CREATE) < 0) { 122 if (handle) 123 nl_socket_free(handle); 131 struct nl_sock *handle = NULL; local 137 handle = nl_socket_alloc() [all...] |
/external/yaffs2/yaffs2/direct/ |
yaffs_fileem.c | 57 int handle; member in struct:__anon28961 85 filedisk.handle = open("yaffsemfile", O_RDWR | O_CREAT, S_IREAD | S_IWRITE); 87 if(filedisk.handle < 0) 94 fSize = lseek(filedisk.handle,0,SEEK_END); 100 lseek(filedisk.handle,0,SEEK_SET); 106 written = write(filedisk.handle,&p,sizeof(yflash_Page)); 129 lseek(filedisk.handle,chunkInNAND * 528,SEEK_SET); 130 written = write(filedisk.handle,data,512); 137 lseek(filedisk.handle,chunkInNAND * 528 + 512,SEEK_SET); 138 written = write(filedisk.handle,spare,16) [all...] |
/hardware/akm/AK8975_FS/libsensors/ |
AdxlSensor.h | 49 virtual int setDelay(int32_t handle, int64_t ns); 50 virtual int setEnable(int32_t handle, int enabled); 51 virtual int64_t getDelay(int32_t handle); 52 virtual int getEnable(int32_t handle);
|
KionixSensor.h | 49 virtual int setDelay(int32_t handle, int64_t ns); 50 virtual int setEnable(int32_t handle, int enabled); 51 virtual int64_t getDelay(int32_t handle); 52 virtual int getEnable(int32_t handle);
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
perf_obj.h | 58 #define get_Private(handle) \ 59 ((PERF_Private *) ( (handle)->pComponentPrivate )) 89 * Pointer to a handle to the PERF object, which will be 100 /* check if handle is defined */ 101 #define PERF_check(handle, exp) ((handle) ? (exp),1 : 0)
|
/libcore/luni/src/main/java/javax/security/auth/callback/ |
CallbackHandler.java | 23 * Needs to be implemented by classes that want to handle authentication 24 * {@link Callback}s. A single method {@link #handle(Callback[])} must be 36 * Callback}s it actually wants to handle and in which way. For example, a 40 * values. If a {@code CallbackHandler} is not able to handle a specific 49 * if the {@code CallbackHandler} is not able to handle a 52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; method in interface:CallbackHandler
|
/ndk/sources/host-tools/ndk-stack/elff/ |
elff_api.h | 28 /* Defines type for a handle used in ELFF API. */ 115 * On success, this routine returns a handle that can be used in subsequent 118 * NOTE: handle returned from this routine must be closed using elff_close(). 122 /* Closes a handle obtained after successful call to elff_init routine. 124 * handle - A handle to close. This handle must be a handle returned from 127 void elff_close(ELFF_HANDLE handle); 130 * handle - A handle obtained from successful call to elff_init() [all...] |
/external/bluetooth/bluedroid/bta/include/ |
bta_pan_co.h | 81 BTA_API extern void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role, tBTA_PAN_ROLE peer_role, BD_ADDR peer_addr); 94 BTA_API extern void bta_pan_co_close(UINT16 handle, UINT8 app_id); 109 BTA_API extern void bta_pan_co_tx_path(UINT16 handle, UINT8 app_id); 124 BTA_API extern void bta_pan_co_rx_path(UINT16 handle, UINT8 app_id); 139 BTA_API extern void bta_pan_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data, 155 BTA_API extern void bta_pan_co_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf, 173 BTA_API extern void bta_pan_co_rx_flow(UINT16 handle, UINT8 app_id, BOOLEAN enable); 185 BTA_API extern void bta_pan_co_pfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result, 197 BTA_API extern void bta_pan_co_mfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
latebindingsymboltable.cc | 53 DllHandle handle = dlopen(dll_name, RTLD_NOW); local 57 if (handle == kInvalidDllHandle) { 60 return handle; 63 void InternalUnloadDll(DllHandle handle) { 65 if (dlclose(handle) != 0) { 73 static bool LoadSymbol(DllHandle handle, 77 *symbol = dlsym(handle, symbol_name); 95 bool InternalLoadSymbols(DllHandle handle, 104 if (!LoadSymbol(handle, symbol_names[i], &symbols[i])) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/ |
htab.c | 41 /* Make sure handle table handles match VDPAU handles. */ 70 vlHandle handle = 0; local 73 handle = handle_table_add(htab, data); 75 return handle; 81 void* vlGetDataHTAB(vlHandle handle) 83 assert(handle); 88 data = handle_table_get(htab, handle); 92 return (void*)handle; 96 void vlRemoveDataHTAB(vlHandle handle) 101 handle_table_remove(htab, handle); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
dlopen.h | 67 _mesa_dlsym(void *handle, const char *fname) 81 u.v = dlsym(handle, fname2); 83 u.v = dlsym(handle, fname); 85 u.v = (void *) GetProcAddress(handle, fname); 96 _mesa_dlclose(void *handle) 99 (void) handle; 101 dlclose(handle); 103 FreeLibrary(handle); 105 (void) handle;
|
/external/mesa3d/src/gallium/state_trackers/vdpau/ |
htab.c | 41 /* Make sure handle table handles match VDPAU handles. */ 70 vlHandle handle = 0; local 73 handle = handle_table_add(htab, data); 75 return handle; 81 void* vlGetDataHTAB(vlHandle handle) 83 assert(handle); 88 data = handle_table_get(htab, handle); 92 return (void*)handle; 96 void vlRemoveDataHTAB(vlHandle handle) 101 handle_table_remove(htab, handle); [all...] |
/external/mesa3d/src/mesa/main/ |
dlopen.h | 67 _mesa_dlsym(void *handle, const char *fname) 81 u.v = dlsym(handle, fname2); 83 u.v = dlsym(handle, fname); 85 u.v = (void *) GetProcAddress(handle, fname); 96 _mesa_dlclose(void *handle) 99 (void) handle; 101 dlclose(handle); 103 FreeLibrary(handle); 105 (void) handle;
|
/frameworks/native/services/sensorservice/ |
SensorInterface.h | 40 virtual status_t setDelay(void* ident, int handle, int64_t ns) = 0; 43 virtual status_t batch(void* ident, int handle, int flags, int64_t samplingPeriodNs, 46 return setDelay(ident, handle, samplingPeriodNs); 51 virtual status_t flush(void* ident, int handle) { 57 virtual void autoDisable(void *ident, int handle) { } 76 virtual status_t batch(void* ident, int handle, int flags, int64_t samplingPeriodNs, 78 virtual status_t setDelay(void* ident, int handle, int64_t ns); 79 virtual status_t flush(void* ident, int handle); 82 virtual void autoDisable(void *ident, int handle);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
HandleMap.java | 38 int handle = 0; field in class:HandleMap.Entry 47 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) { 50 this.handle = handle; 56 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance, 60 this.handle = handle; 67 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) { 70 this.handle = handle; 187 Integer handle = mRequestMap.get(requestId); local [all...] |
/external/libpcap/ |
pcap-septel.c | 194 septel_inject(pcap_t *handle, const void *buf _U_, size_t size _U_) 196 strlcpy(handle->errbuf, "Sending packets isn't supported on Septel cards", 202 * Get a handle for a live capture from the given Septel device. Always pass a NULL device 210 pcap_t *handle; local 212 handle = malloc(sizeof(*handle)); 213 if (handle == NULL) { 220 memset(handle, 0, sizeof(*handle)); 222 handle->snapshot = snaplen [all...] |
/external/chromium_org/net/socket/ |
ssl_client_socket_pool_unittest.cc | 43 // Make sure |handle|'s load times are set correctly. DNS and connect start 46 void TestLoadTimingInfo(const ClientSocketHandle& handle) { 48 EXPECT_TRUE(handle.GetLoadTimingInfo(false, &load_timing_info)); 62 void TestLoadTimingInfoNoDns(const ClientSocketHandle& handle) { 64 EXPECT_TRUE(handle.GetLoadTimingInfo(false, &load_timing_info)); 242 ClientSocketHandle handle; local 243 int rv = handle.Init("a", params, MEDIUM, CompletionCallback(), pool_.get(), 246 EXPECT_FALSE(handle.is_initialized()); 247 EXPECT_FALSE(handle.socket()); 248 EXPECT_FALSE(handle.is_ssl_error()) 260 ClientSocketHandle handle; local 285 ClientSocketHandle handle; local 310 ClientSocketHandle handle; local 329 ClientSocketHandle handle; local 353 ClientSocketHandle handle; local 377 ClientSocketHandle handle; local 402 ClientSocketHandle handle; local 429 ClientSocketHandle handle; local 454 ClientSocketHandle handle; local 486 ClientSocketHandle handle; local 516 ClientSocketHandle handle; local 535 ClientSocketHandle handle; local 560 ClientSocketHandle handle; local 585 ClientSocketHandle handle; local 602 ClientSocketHandle handle; local 627 ClientSocketHandle handle; local 646 ClientSocketHandle handle; local 683 ClientSocketHandle handle; local 718 ClientSocketHandle handle; local 746 ClientSocketHandle handle; local 782 ClientSocketHandle handle; local [all...] |
/external/chromium_org/media/audio/alsa/ |
alsa_wrapper.h | 29 virtual int PcmOpen(snd_pcm_t** handle, const char* name, 31 virtual int PcmClose(snd_pcm_t* handle); 32 virtual int PcmPrepare(snd_pcm_t* handle); 33 virtual int PcmDrop(snd_pcm_t* handle); 34 virtual int PcmDelay(snd_pcm_t* handle, snd_pcm_sframes_t* delay); 35 virtual snd_pcm_sframes_t PcmWritei(snd_pcm_t* handle, 38 virtual snd_pcm_sframes_t PcmReadi(snd_pcm_t* handle, 41 virtual int PcmRecover(snd_pcm_t* handle, int err, int silent); 42 virtual int PcmSetParams(snd_pcm_t* handle, snd_pcm_format_t format, 46 virtual int PcmGetParams(snd_pcm_t* handle, snd_pcm_uframes_t* buffer_size [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
fake_resource_manager.cc | 33 PP_Resource handle = next_handle_++; local 37 resource_map_.insert(ResourceMap::value_type(handle, resource_tracker)); 40 return handle; 43 void FakeResourceManager::AddRef(PP_Resource handle) { 45 ResourceMap::iterator iter = resource_map_.find(handle); 47 << handle; 52 << "(" << handle 59 void FakeResourceManager::Release(PP_Resource handle) { 61 ResourceMap::iterator iter = resource_map_.find(handle); 63 << handle; [all...] |
/hardware/samsung_slsi/exynos5/libcsc/ |
csc.c | 114 CSC_HANDLE *handle) 118 switch (handle->dst_format.color_format) { 121 (unsigned char *)handle->dst_buffer.planes[CSC_Y_PLANE], 122 (unsigned char *)handle->dst_buffer.planes[CSC_U_PLANE], 123 (unsigned char *)handle->dst_buffer.planes[CSC_V_PLANE], 124 (unsigned char *)handle->src_buffer.planes[CSC_RGB_PLANE], 125 handle->src_format.width, 126 handle->src_format.height); 131 (unsigned char *)handle->dst_buffer.planes[CSC_Y_PLANE], 132 (unsigned char *)handle->dst_buffer.planes[CSC_UV_PLANE] [all...] |
/external/chromium_org/mojo/public/bindings/lib/ |
bindings_serialization.cc | 47 void EncodeHandle(Handle* handle, std::vector<Handle>* handles) { 48 if (handle->is_valid()) { 49 handles->push_back(*handle); 50 handle->set_value(static_cast<MojoHandle>(handles->size() - 1)); 52 // Encode -1 to mean the invalid handle. 53 handle->set_value(static_cast<MojoHandle>(-1)); 57 bool DecodeHandle(Handle* handle, std::vector<Handle>* handles) [all...] |
/external/bluetooth/bluedroid/btif/co/ |
bta_pan_co.c | 74 void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role, 78 "handle:%d", app_id, local_role, peer_role, handle); 81 conn = btpan_new_conn(handle, peer_addr, local_role, peer_role); 85 "conn->handle:%d should = handle:%d, local_role:%d, remote_role:%d", 86 btpan_cb.tap_fd, btpan_cb.open_count, conn->handle, handle, 91 conn->handle = handle; [all...] |
/external/chromium_org/net/base/ |
prioritized_dispatcher.cc | 26 PrioritizedDispatcher::Handle PrioritizedDispatcher::Add( 33 return Handle(); 38 PrioritizedDispatcher::Handle PrioritizedDispatcher::AddAtHead( 45 return Handle(); 50 void PrioritizedDispatcher::Cancel(const Handle& handle) { 51 queue_.Erase(handle); 55 Handle handle = queue_.FirstMin(); local 56 if (handle.is_null() 137 Handle handle = queue_.FirstMax(); local [all...] |