HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 151 - 175 of 3441) sorted by null

1 2 3 4 5 67 8 91011>>

  /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:__anon30792
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...]
  /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);
  /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/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/media/audio/linux/
alsa_wrapper.h 26 virtual int PcmOpen(snd_pcm_t** handle, const char* name,
28 virtual int PcmClose(snd_pcm_t* handle);
29 virtual int PcmPrepare(snd_pcm_t* handle);
30 virtual int PcmDrop(snd_pcm_t* handle);
31 virtual int PcmDelay(snd_pcm_t* handle, snd_pcm_sframes_t* delay);
32 virtual snd_pcm_sframes_t PcmWritei(snd_pcm_t* handle,
35 virtual snd_pcm_sframes_t PcmReadi(snd_pcm_t* handle,
38 virtual int PcmRecover(snd_pcm_t* handle, int err, int silent);
39 virtual int PcmSetParams(snd_pcm_t* handle, snd_pcm_format_t format,
43 virtual int PcmGetParams(snd_pcm_t* handle, snd_pcm_uframes_t* buffer_size
    [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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
HandleMap.java 38 int handle = 0; field in class:HandleMap.Entry
46 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
49 this.handle = handle;
55 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) {
58 this.handle = handle;
64 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) {
67 this.handle = handle;
174 Integer handle = mRequestMap.get(requestId); local
    [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/third_party/mesa/src/src/gallium/auxiliary/util/
u_handle_table.c 30 * Generic handle table implementation.
51 /** Number of objects the handle can currently hold */
156 unsigned handle; local
163 /* linear search for an empty handle */
171 handle = index + 1;
174 if(!handle)
185 return handle;
191 unsigned handle,
197 assert(handle);
198 if(!handle || !ht
    [all...]
  /external/libsepol/src/
iface_record.c 27 int sepol_iface_key_create(sepol_handle_t * handle,
35 ERR(handle, "out of memory, could not create interface key");
55 int sepol_iface_key_extract(sepol_handle_t * handle,
60 if (sepol_iface_key_create(handle, iface->name, key_ptr) < 0) {
61 ERR(handle, "could not extract key from "
89 int sepol_iface_create(sepol_handle_t * handle, sepol_iface_t ** iface)
96 ERR(handle, "out of memory, could not create "
120 int sepol_iface_set_name(sepol_handle_t * handle,
126 ERR(handle, "out of memory, " "could not set interface name");
145 int sepol_iface_set_ifcon(sepol_handle_t * handle,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_handle_table.c 30 * Generic handle table implementation.
51 /** Number of objects the handle can currently hold */
156 unsigned handle; local
163 /* linear search for an empty handle */
171 handle = index + 1;
174 if(!handle)
185 return handle;
191 unsigned handle,
197 assert(handle);
198 if(!handle || !ht
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_gentable.c 107 _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
121 *procp = dlsym(handle, symboln);
128 *procp = dlsym(handle, symboln);
135 *procp = dlsym(handle, symboln);
142 *procp = dlsym(handle, symboln);
149 *procp = dlsym(handle, symboln);
156 *procp = dlsym(handle, symboln);
163 *procp = dlsym(handle, symboln);
170 *procp = dlsym(handle, symboln);
177 *procp = dlsym(handle, symboln)
    [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));
244 ClientSocketHandle handle; local
245 int rv = handle.Init("a", params, MEDIUM, CompletionCallback(), pool_.get(),
248 EXPECT_FALSE(handle.is_initialized());
249 EXPECT_FALSE(handle.socket());
250 EXPECT_FALSE(handle.is_ssl_error())
262 ClientSocketHandle handle; local
287 ClientSocketHandle handle; local
307 ClientSocketHandle handle; local
331 ClientSocketHandle handle; local
355 ClientSocketHandle handle; local
380 ClientSocketHandle handle; local
407 ClientSocketHandle handle; local
432 ClientSocketHandle handle; local
464 ClientSocketHandle handle; local
494 ClientSocketHandle handle; local
513 ClientSocketHandle handle; local
538 ClientSocketHandle handle; local
560 ClientSocketHandle handle; local
585 ClientSocketHandle handle; local
604 ClientSocketHandle handle; local
641 ClientSocketHandle handle; local
672 ClientSocketHandle handle; local
708 ClientSocketHandle handle; local
    [all...]
socks_client_socket_pool_unittest.cc 28 // Make sure |handle|'s load times are set correctly. Only connect times should
30 void TestLoadTimingInfo(const ClientSocketHandle& handle) {
32 EXPECT_TRUE(handle.GetLoadTimingInfo(false, &load_timing_info));
122 ClientSocketHandle handle; local
123 int rv = handle.Init("a", ignored_socket_params_, LOW, CompletionCallback(),
126 EXPECT_TRUE(handle.is_initialized());
127 EXPECT_TRUE(handle.socket());
128 TestLoadTimingInfo(handle);
136 ClientSocketHandle handle; local
137 int rv = handle.Init("a", ignored_socket_params_, LOW, callback.callback()
155 ClientSocketHandle handle; local
169 ClientSocketHandle handle; local
190 ClientSocketHandle handle; local
210 ClientSocketHandle handle; local
    [all...]
  /development/ndk/platforms/android-3/include/
dlfcn.h 36 extern int dlclose(void* handle);
38 extern void* dlsym(void* handle, const char* symbol);
  /external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_policy_browsertest.cc 48 base::ProcessHandle handle; local
50 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
57 base::WaitForExitCodeWithTimeout(handle, &exit_code,
62 base::CloseProcessHandle(handle);
77 base::ProcessHandle handle; local
79 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
84 base::WaitForExitCodeWithTimeout(handle, &exit_code,
89 base::CloseProcessHandle(handle);
  /external/chromium_org/content/common/
socket_stream_handle_data.h 25 // to |handle|.
27 WebKit::WebSocketStreamHandle* handle, int render_view_id);
30 // |handle| must actually be a WebSocketStreamHandleImpl object.
32 WebKit::WebSocketStreamHandle* handle);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
CursorController.java 25 * Called when the handle is about to start updating its position.
26 * @param handle
28 void beforeStartUpdatingPosition(HandleView handle);
33 void updatePosition(HandleView handle, int x, int y);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
UnsafePersistent.h 47 explicit UnsafePersistent(v8::Persistent<T>& handle)
49 m_value = handle.ClearAndLeak();
52 UnsafePersistent(v8::Isolate* isolate, v8::Handle<T>& handle)
54 v8::Persistent<T> persistent(isolate, handle);
63 // This is incredibly unsafe: the handle is valid only when this
67 v8::Persistent<T>* handle = reinterpret_cast<v8::Persistent<T>*>(&m_value); local
68 return handle;
73 v8::Handle<T> deprecatedHandle()
75 v8::Handle<T>* handle = reinterpret_cast<v8::Handle<T>*>(&m_value) local
    [all...]

Completed in 814 milliseconds

1 2 3 4 5 67 8 91011>>