HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 1 - 25 of 6298) 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);
  /system/bt/btif/include/
btif_avrcp_audio_track.h 30 * Creates an audio track object and returns a void handle. Use this handle to
34 * The ownership of the handle is maintained by the caller of this API and it
43 void BtifAvrcpAudioTrackStart(void* handle);
48 void BtifAvrcpAudioTrackPause(void* handle);
53 void BtifAvrcpSetAudioTrackGain(void* handle, float gain);
59 void BtifAvrcpAudioTrackStop(void* handle);
60 void BtifAvrcpAudioTrackDelete(void* handle);
67 int BtifAvrcpAudioTrackWriteData(void* handle, void* audioBuffer,
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.h 20 void WebRtc_FreeDelayEstimatorFarend(void* handle);
36 // - void* : Created |handle|. If the memory can't be allocated or
43 int WebRtc_InitDelayEstimatorFarend(void* handle);
49 void WebRtc_SoftResetDelayEstimatorFarend(void* handle, int delay_shift);
62 // - handle : Updated far-end instance.
64 int WebRtc_AddFarSpectrumFix(void* handle,
70 int WebRtc_AddFarSpectrumFloat(void* handle,
75 void WebRtc_FreeDelayEstimator(void* handle);
112 // - void* : Created |handle|. If the memory can't be allocated or
119 int WebRtc_InitDelayEstimator(void* handle);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
versioned_computation_handle.h 35 ComputationHandle handle;
40 return (handle.handle() == other.handle.handle()) &&
44 return ((handle.handle() < other.handle.handle()) ||
45 ((handle.handle() == other.handle.handle()) &
    [all...]
channel_tracker.cc 37 // Create a new channel handle with a unique value.
40 // Register a channel object associated with the handle.
44 opaque_to_channel_[new_handle.handle()] = channel;
49 Status ChannelTracker::RegisterSend(const ChannelHandle& handle) {
51 return RegisterSendInternal(handle);
54 Status ChannelTracker::RegisterRecv(const ChannelHandle& handle) {
56 return RegisterRecvInternal(handle);
66 Status ChannelTracker::RegisterSendInternal(const ChannelHandle& handle) {
67 if (opaque_to_channel_.count(handle.handle()) == 0)
    [all...]
  /bionic/tests/libs/
dlopen_b.cpp 10 void *handle = dlopen("libtest_dt_runpath_x.so", RTLD_NOW); local
11 if (handle != nullptr) {
13 return handle;
cfi_test_helper2.cpp 23 void* handle; local
25 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD);
26 CHECK(handle != nullptr);
27 dlclose(handle);
dlopen_testlib_dlopen_from_ctor.cpp 20 void* handle = dlopen("libc.so", RTLD_NOW); local
21 dlclose(handle);
  /external/adhd/cras/src/server/
cras_hfp_slc.h 12 typedef int (*hfp_slc_init_cb)(struct hfp_slc_handle *handle);
15 typedef int (*hfp_slc_disconnect_cb)(struct hfp_slc_handle *handle);
18 * to read and handle received AT commands.
21 * is_hsp - if the slc handle is created for headset profile
34 void hfp_slc_destroy(struct hfp_slc_handle *handle);
37 int hfp_set_call_status(struct hfp_slc_handle *handle, int call);
40 int hfp_event_incoming_call(struct hfp_slc_handle *handle,
46 int hfp_event_update_call(struct hfp_slc_handle *handle);
50 int hfp_event_update_callsetup(struct hfp_slc_handle *handle);
54 int hfp_event_update_callheld(struct hfp_slc_handle *handle);
    [all...]
cras_hfp_slc.c 40 /* Handle object to hold required info to initialize and maintain
55 * telephony - A reference of current telephony handle.
82 int (*callback) (struct hfp_slc_handle *handle, const char *cmd);
86 static int hfp_send(struct hfp_slc_handle *handle, const char *buf)
90 if (handle->rfcomm_fd < 0)
94 err = write(handle->rfcomm_fd, "\r\n", 2);
101 err = write(handle->rfcomm_fd,
108 err = write(handle->rfcomm_fd, "\r\n", 2);
116 static int hfp_send_ind_event_report(struct hfp_slc_handle *handle,
122 if (handle->is_hsp || !handle->ind_event_report
561 struct hfp_slc_handle *handle = (struct hfp_slc_handle *)arg; local
623 struct hfp_slc_handle *handle; local
    [all...]
  /external/selinux/libsemanage/tests/
utilities.c 30 semanage_handle_t * handle, const char *fmt, ...)
utilities.h 20 #include "handle.h"
22 void test_msg_handler(void *varg, semanage_handle_t * handle, const char *fmt,
  /external/selinux/libsemanage/include/semanage/
debug.h 26 #include <semanage/handle.h>
32 extern int semanage_msg_get_level(semanage_handle_t * handle);
34 extern const char *semanage_msg_get_channel(semanage_handle_t * handle);
36 extern const char *semanage_msg_get_fname(semanage_handle_t * handle);
43 extern void semanage_msg_set_callback(semanage_handle_t * handle,
49 handle,
  /packages/services/Car/car-lib/src/android/car/trust/
ICarTrustAgentTokenResponseCallback.aidl 29 void onEscrowTokenAdded(out byte[] token, long handle, int uid);
32 void onEscrowTokenRemoved(long handle, boolean successful);
35 void onEscrowTokenActiveStateChanged(long handle, boolean active);
  /device/google/contexthub/util/stm32_flash/
stm32_bl.c 26 uint8_t checksum(__attribute__((unused)) handle_t *handle, uint8_t *bytes, int length)
43 static uint8_t write_len(handle_t *handle, int len)
49 return handle->write_data(handle, buffer, sizeof(uint8_t));
52 static uint8_t write_cnt(handle_t *handle, uint16_t cnt)
59 return handle->write_data(handle, buffer, sizeof(uint16_t));
62 static uint8_t write_addr(handle_t *handle, uint32_t addr)
71 return handle->write_data(handle, buffer, sizeof(uint32_t))
    [all...]
i2c.c 26 uint8_t i2c_write_data(handle_t *handle, uint8_t *buffer, int length)
28 i2c_handle_t *i2c_handle = (i2c_handle_t *)handle;
30 buffer[length] = checksum(handle, buffer, length);
38 uint8_t i2c_write_cmd(handle_t *handle, uint8_t cmd)
45 return handle->write_data(handle, buffer, sizeof(uint8_t));
48 uint8_t i2c_read_data(handle_t *handle, uint8_t *data, int length)
50 i2c_handle_t *i2c_handle = (i2c_handle_t *)handle;
58 uint8_t i2c_read_ack(handle_t *handle)
62 if (handle->read_data(handle, &buffer, sizeof(uint8_t)) == CMD_ACK
    [all...]
  /external/selinux/libsemanage/src/
database.c 3 #include <semanage/handle.h>
9 static int assert_init(semanage_handle_t * handle, dbase_config_t * dconfig)
14 ERR(handle,
24 static int enter_ro(semanage_handle_t * handle, dbase_config_t * dconfig)
27 if (assert_init(handle, dconfig) < 0)
30 if (!handle->is_in_transaction &&
31 handle->conf->store_type == SEMANAGE_CON_DIRECT) {
33 if (semanage_get_active_lock(handle) < 0) {
34 ERR(handle, "could not get the active lock");
39 if (dconfig->dtable->cache(handle, dconfig->dbase) < 0
    [all...]
booleans_local.c 10 #include "handle.h"
13 int semanage_bool_modify_local(semanage_handle_t * handle,
18 dbase_config_t *dconfig = semanage_bool_dbase_local(handle);
19 return dbase_modify(handle, dconfig, key, data);
22 int semanage_bool_del_local(semanage_handle_t * handle,
26 dbase_config_t *dconfig = semanage_bool_dbase_local(handle);
27 return dbase_del(handle, dconfig, key);
30 int semanage_bool_query_local(semanage_handle_t * handle,
35 dbase_config_t *dconfig = semanage_bool_dbase_local(handle);
36 return dbase_query(handle, dconfig, key, response)
    [all...]
interfaces_local.c 10 #include "handle.h"
13 int semanage_iface_modify_local(semanage_handle_t * handle,
18 dbase_config_t *dconfig = semanage_iface_dbase_local(handle);
19 return dbase_modify(handle, dconfig, key, data);
22 int semanage_iface_del_local(semanage_handle_t * handle,
26 dbase_config_t *dconfig = semanage_iface_dbase_local(handle);
27 return dbase_del(handle, dconfig, key);
30 int semanage_iface_query_local(semanage_handle_t * handle,
35 dbase_config_t *dconfig = semanage_iface_dbase_local(handle);
36 return dbase_query(handle, dconfig, key, response)
    [all...]
nodes_local.c 10 #include "handle.h"
13 int semanage_node_modify_local(semanage_handle_t * handle,
18 dbase_config_t *dconfig = semanage_node_dbase_local(handle);
19 return dbase_modify(handle, dconfig, key, data);
22 int semanage_node_del_local(semanage_handle_t * handle,
26 dbase_config_t *dconfig = semanage_node_dbase_local(handle);
27 return dbase_del(handle, dconfig, key);
30 int semanage_node_query_local(semanage_handle_t * handle,
35 dbase_config_t *dconfig = semanage_node_dbase_local(handle);
36 return dbase_query(handle, dconfig, key, response)
    [all...]
  /external/tpm2/
_TPM_Hash_Start.c 18 TPMI_DH_OBJECT handle; local
27 // Create an event sequence object and store the handle in global
38 // slot numbers and handle numbers. To handle the general case, scan for
39 // a handle that is assigned and free it for the DRTM sequence.
42 // failed indicating that all slots are occupied, then the first handle we
45 for(handle = TRANSIENT_FIRST; handle < TRANSIENT_LAST; handle++)
48 if(ObjectIsPresent(handle))
    [all...]
Entity_fp.h 11 TPMI_DH_ENTITY handle, // IN: handle of entity
14 UINT16 EntityGetAuthValue(TPMI_DH_ENTITY handle, // IN: handle of entity
18 TPMI_DH_ENTITY handle // IN :handle of entity
20 TPM_RC EntityGetLoadStatus(TPM_HANDLE *handle, // IN/OUT: handle of the entity
23 UINT16 EntityGetName(TPMI_DH_ENTITY handle, // IN: handle of entit
    [all...]
  /hardware/interfaces/renderscript/1.0/default/
Device.cpp 50 void* handle = nullptr; local
57 handle = android_dlopen_ext(filename, RTLD_LAZY | RTLD_LOCAL, &dlextinfo);
58 if (handle == nullptr) {
63 if (handle == nullptr) {
66 handle = dlopen(filename, RTLD_LAZY | RTLD_LOCAL);
67 if (handle == nullptr) {
76 (Allocation1DDataFnPtr)dlsym(handle, "rsAllocation1DData"),
79 (Allocation1DReadFnPtr)dlsym(handle, "rsAllocation1DRead"),
81 (Allocation2DDataFnPtr)dlsym(handle, "rsAllocation2DData"),
83 (Allocation2DReadFnPtr)dlsym(handle, "rsAllocation2DRead")
    [all...]
  /external/curl/tests/libtest/
lib1550.c 30 CURLM *handle; local
38 handle = curl_multi_init();
41 curl_multi_setopt(handle, CURLMOPT_PIPELINING_SERVER_BL, bl_servers);
42 curl_multi_setopt(handle, CURLMOPT_PIPELINING_SITE_BL, bl_sites);
43 curl_multi_cleanup(handle);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
TagTuple.java 19 private final String handle; field in class:TagTuple
22 public TagTuple(String handle, String suffix) {
26 this.handle = handle;
31 return handle;

Completed in 1671 milliseconds

1 2 3 4 5 6 7 8 91011>>