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

1 2 3 4 5 6 7 891011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeList.java 110 int handle=m_iter.item(index); local
111 if (handle == DTM.NULL) {
114 return m_iter.getDTM(handle).getNode(handle);
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_ci.c 43 void bta_ag_ci_rx_write(UINT16 handle, char *p_data, UINT16 len)
60 p_buf->hdr.layer_specific = handle;
88 void bta_ag_ci_slc_ready(UINT16 handle)
95 p_buf->hdr.layer_specific = handle;
  /external/bluetooth/bluedroid/bta/pan/
bta_pan_ci.c 53 void bta_pan_ci_tx_ready(UINT16 handle)
59 p_buf->layer_specific = handle;
78 void bta_pan_ci_rx_ready(UINT16 handle)
84 p_buf->layer_specific = handle;
96 ** disable data flow when it is congested and cannot handle
105 void bta_pan_ci_tx_flow(UINT16 handle, BOOLEAN enable)
111 p_buf->hdr.layer_specific = handle;
130 void bta_pan_ci_rx_write(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol,
151 p_buf->layer_specific = handle;
173 void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol
    [all...]
  /external/chromium/webkit/glue/
webfileutilities_impl.cc 118 void WebFileUtilitiesImpl::closeFile(base::PlatformFile& handle) {
119 if (handle == base::kInvalidPlatformFileValue)
121 if (base::ClosePlatformFile(handle))
122 handle = base::kInvalidPlatformFileValue;
125 long long WebFileUtilitiesImpl::seekFile(base::PlatformFile handle,
128 if (handle == base::kInvalidPlatformFileValue)
130 net::FileStream file_stream(handle, 0);
134 bool WebFileUtilitiesImpl::truncateFile(base::PlatformFile handle,
136 if (handle == base::kInvalidPlatformFileValue || offset < 0)
138 net::FileStream file_stream(handle, base::PLATFORM_FILE_WRITE)
    [all...]
  /external/iptables/iptables/
ip6tables-standalone.c 50 struct ip6tc_handle *handle = NULL; local
66 ret = do_command6(argc, argv, &table, &handle);
68 ret = ip6tc_commit(handle);
69 ip6tc_free(handle);
iptables-standalone.c 52 struct iptc_handle *handle = NULL; local
69 ret = do_command4(argc, argv, &table, &handle);
71 ret = iptc_commit(handle);
72 iptc_free(handle);
  /external/javasqlite/src/main/java/SQLite/
FunctionContext.java 12 * Internal handle for the native SQLite API.
15 private long handle = 0; field in class:FunctionContext
Vm.java 10 * Internal handle for the compiled SQLite VM.
13 private long handle = 0; field in class:Vm
  /external/libnfc-nci/src/nfa/p2p/
nfa_p2p_api.c 44 ** NFA_P2P_REG_SERVER_EVT will be returned with status and handle.
110 ** NFA_P2P_REG_CLIENT_EVT will be returned with status and handle.
159 ** NFA_STATUS_BAD_HANDLE if handle is not valid
163 tNFA_STATUS NFA_P2pDeregister (tNFA_HANDLE handle)
168 P2P_TRACE_API1 ("NFA_P2pDeregister (): handle:0x%02X", handle);
170 xx = handle & NFA_HANDLE_MASK;
175 P2P_TRACE_ERROR0 ("NFA_P2pDeregister (): Handle is invalid or not registered");
183 p_msg->handle = handle;
    [all...]
  /external/libselinux/include/selinux/
label.h 59 * selabel_open - Create a labeling handle.
67 * backend. Return value is the created handle on success or NULL with
75 * selabel_close - Close a labeling handle.
76 * @handle: specifies handle to close
78 * Destroy the specified handle, closing files, freeing allocated memory,
79 * etc. The handle may not be further used after it has been closed.
81 void selabel_close(struct selabel_handle *handle);
85 * @handle: specifies backend instance to query
96 int selabel_lookup(struct selabel_handle *handle, security_context_t *con
    [all...]
  /external/mockito/src/org/mockito/invocation/
MockHandler.java 27 * @param invocation The invocation to handle
32 Object handle(Invocation invocation) throws Throwable; method in interface:MockHandler
  /external/smack/src/org/apache/harmony/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
  /external/webrtc/src/common_audio/vad/
vad_sp.h 46 // - handle : State information of the VAD.
50 int16_t WebRtcVad_FindMinimum(VadInstT* handle,
  /external/webrtc/src/modules/audio_processing/
echo_cancellation_impl.h 58 virtual int InitializeHandle(void* handle) const;
59 virtual int ConfigureHandle(void* handle) const;
60 virtual int DestroyHandle(void* handle) const;
62 virtual int GetHandleError(void* handle) const;
echo_control_mobile_impl.h 49 virtual int InitializeHandle(void* handle) const;
50 virtual int ConfigureHandle(void* handle) const;
51 virtual int DestroyHandle(void* handle) const;
53 virtual int GetHandleError(void* handle) const;
gain_control_impl.h 60 virtual int InitializeHandle(void* handle) const;
61 virtual int ConfigureHandle(void* handle) const;
62 virtual int DestroyHandle(void* handle) const;
64 virtual int GetHandleError(void* handle) const;
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 53 public void append(int handle, int property, int type, long value) {
58 mObjectHandles[index] = handle;
64 public void append(int handle, int property, String value) {
69 mObjectHandles[index] = handle;
  /frameworks/native/services/sensorservice/
SensorInterface.cpp 53 status_t HardwareSensor::setDelay(void* ident, int handle, int64_t ns) {
54 return mSensorDevice.setDelay(ident, handle, ns);
57 void HardwareSensor::autoDisable(void *ident, int handle) {
58 mSensorDevice.autoDisable(ident, handle);
SensorInterface.h 40 virtual status_t setDelay(void* ident, int handle, int64_t ns) = 0;
43 virtual void autoDisable(void *ident, int handle) { }
62 virtual status_t setDelay(void* ident, int handle, int64_t ns);
65 virtual void autoDisable(void *ident, int handle);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/Generic/
TrustZoneDevice.h 116 bool lockWsmL2(uint32_t handle);
118 bool unlockWsmL2(uint32_t handle);
120 addr_t findWsmL2(uint32_t handle);
122 bool findContiguousWsm(uint32_t handle, addr_t *phys, uint32_t *len);
  /libcore/luni/src/main/java/org/w3c/dom/
UserDataHandler.java 66 public void handle(short operation, method in interface:UserDataHandler
  /external/libsepol/tests/
test-downgrade.c 26 #include <sepol/handle.h>
213 sepol_handle_destroy(f.handle);
223 sepol_handle_destroy(f.handle);
244 sepol_handle_t *handle; local
248 handle = sepol_handle_create();
249 if (handle == NULL) {
253 sepol_msg_set_callback(handle, NULL, NULL);
259 sepol_handle_destroy(f.handle);
267 f.handle = handle;
    [all...]
  /bionic/libc/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /bionic/libdl/
libdl.c 23 void *dlsym(void *handle, const char *symbol) { return 0; }
25 int dlclose(void *handle) { return 0; }
  /development/ndk/platforms/android-8/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);

Completed in 1357 milliseconds

1 2 3 4 5 6 7 891011>>