Searched defs:id (Results 1 - 25 of 170) sorted by relevance

1234567

/system/core/adf/libadf/include/adf/
H A Dadf.h29 adf_id_t id; member in struct:adf_device
50 int adf_device_open(adf_id_t id, int flags, struct adf_device *dev);
151 int adf_interface_open(struct adf_device *dev, adf_id_t id, int flags);
243 int adf_overlay_engine_open(struct adf_device *dev, adf_id_t id, int flags);
/system/nfc/src/nfa/sys/
H A Dnfa_sys_cback.cc59 void nfa_sys_cback_notify_enable_complete(uint8_t id) { argument
60 nfa_sys_cb.enable_cplt_flags |= (0x0001 << id);
99 void nfa_sys_cback_notify_nfcc_power_mode_proc_complete(uint8_t id) { argument
100 nfa_sys_cb.proc_nfcc_pwr_mode_cplt_flags |= (0x0001 << id);
/system/core/logd/
H A DLogUtils.h73 static inline bool worstUidEnabledForLogid(log_id_t id) { argument
74 return (id == LOG_ID_MAIN) || (id == LOG_ID_SYSTEM) ||
75 (id == LOG_ID_RADIO) || (id == LOG_ID_EVENTS);
/system/bt/include/hardware/
H A Dbt_gatt_types.h33 /** GATT ID adding instance id tracking to the UUID */
41 btgatt_gatt_id_t id; member in struct:__anon727
H A Dbt_mce.h24 int id; member in struct:__anon787
/system/connectivity/wificond/net/
H A Dnl80211_packet.h96 // message type is a nl80211 message family id dynamiclly allocated by kernel.
116 bool HasAttribute(int id) const;
117 bool GetAttribute(int id, NL80211NestedAttr* attribute) const;
125 bool GetAttributeValue(int id, T* value) const { argument
132 if (!GetAttribute(id, &attribute)) {
140 bool GetAttribute(int id, NL80211Attr<T>* attribute) const { argument
146 id, &start, &end) ||
/system/core/adb/
H A Dshell_service_protocol.cpp56 bool ShellProtocol::Write(Id id, size_t length) { argument
57 buffer_[0] = id;
H A Dshell_service_protocol_test.cpp90 bool PacketEquals(const ShellProtocol* protocol, ShellProtocol::Id id, argument
93 return (protocol->id() == id &&
102 ShellProtocol::Id id = ShellProtocol::kIdStdout; local
106 ASSERT_TRUE(write_protocol_->Write(id, sizeof(data)));
109 ASSERT_TRUE(PacketEquals(read_protocol_, id, data, sizeof(data)));
114 ShellProtocol::Id id = ShellProtocol::kIdStdin; local
117 ASSERT_TRUE(write_protocol_->Write(id, 10));
121 ASSERT_TRUE(PacketEquals(read_protocol_, id, "1234", 4));
123 ASSERT_TRUE(PacketEquals(read_protocol_, id, "567
130 ShellProtocol::Id id = ShellProtocol::kIdStderr; local
184 ShellProtocol::Id id = ShellProtocol::kIdStdout; local
[all...]
H A Dsocket.h39 unsigned id = 0; member in struct:asocket
109 asocket *create_remote_socket(unsigned id, atransport *t);
/system/core/init/
H A Dkeychords.cpp57 keychord->id = keychords_count + 1;
59 svc->set_keychord_id(keychord->id);
71 __u16 id; local
73 ret = read(keychord_fd, &id, sizeof(id));
74 if (ret != sizeof(id)) {
75 PLOG(ERROR) << "could not read keychord id";
82 Service* svc = ServiceList::GetInstance().FindService(id, &Service::keychord_id);
84 LOG(INFO) << "Starting service '" << svc->name() << "' from keychord " << id;
86 LOG(ERROR) << "Could not start service '" << svc->name() << "' from keychord " << id
[all...]
/system/core/liblog/tests/
H A Dlog_id_test.cpp37 log_id_t id = static_cast<log_id_t>(i); local
38 const char* name = android_log_id_to_name(id);
39 if (id != android_name_to_log_id(name)) {
H A Dlog_read_test.cpp64 EXPECT_EQ(log_msg.id(), LOG_ID_MAIN);
89 log_id_t id = static_cast<log_id_t>(i); local
90 const char* name = android_log_id_to_name(id);
91 if (id != android_name_to_log_id(name)) {
96 EXPECT_TRUE(NULL != (logger = android_logger_open(logger_list, id)));
97 EXPECT_EQ(id, android_logger_get_id(logger));
/system/update_engine/
H A Dchrome_browser_proxy_resolver.cc38 const ProxyRequestId id = next_request_id_++; local
42 weak_ptr_factory_.GetWeakPtr(), id));
43 pending_callbacks_[id] = callback;
44 return id;
/system/vold/model/
H A DObbVolume.cpp44 ObbVolume::ObbVolume(int id, const std::string& sourcePath, const std::string& sourceKey, argument
46 setId(StringPrintf("obb:%d", id));
/system/libufdt/utils/src/
H A Ddt_table.h53 uint32_t id; /* optional, must be zero if unused */ member in struct:dt_table_entry
/system/netd/server/dns/
H A DDnsTlsSocket.h67 bool query(uint16_t id, const Slice query) override;
99 uint16_t id; member in struct:android::net::DnsTlsSocket::Query
/system/nfc/src/nfc/nfc/
H A Dnfc_utils.cc68 ** Description This function is called to set the connection id to the
69 ** connection control block and the id mapping table
96 tNFC_CONN_CB* nfc_find_conn_cb_by_handle(uint8_t id) { argument
101 if (nfc_cb.conn_cb[xx].id == id) {
114 ** the given connection id
122 uint8_t id; local
133 id = conn_id & NFC_CONN_ID_ID_MASK;
134 if (id < NFC_MAX_CONN_ID) {
135 handle = nfc_cb.conn_id[id];
[all...]
/system/security/keystore/
H A Dconfirmationui_rate_limiting.h83 bool tryPrompt(uid_t id) { argument
87 auto& slot = slots_[id];
90 latest_requester_ = id;
/system/security/keystore/tests/
H A Dconfirmationui_rate_limiting_test.cpp106 uid_t id = rand(); local
107 if (id == 20) continue;
108 ASSERT_TRUE(rateLimiting.tryPrompt(id));
124 uid_t id = rand(); local
125 if (id == 20) continue;
126 ASSERT_TRUE(rateLimiting.tryPrompt(id));
142 uid_t id = rand(); local
143 if (id == 20) continue;
144 ASSERT_TRUE(rateLimiting.tryPrompt(id));
161 uid_t id local
175 uid_t id = rand(); local
192 uid_t id = rand(); local
209 uid_t id = rand(); local
253 uid_t id = rand(); local
[all...]
/system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/zonetree/
H A DTreeNodeTest.java50 public TestTreeNode(String id) { argument
51 super(id);
57 TestTreeNode testTreeNode = new TestTreeNode("id");
58 assertEquals("id", testTreeNode.getId());
67 assertEquals(testVisitor.ids, asList("id"));
/system/bt/bta/sys/
H A Dbta_sys_int.h48 uint8_t id[MAX_COLLISION_REG]; member in struct:__anon482
/system/bt/include/hardware/avrcp/
H A Davrcp.h51 uint16_t id; member in struct:bluetooth::avrcp::MediaPlayerInfo
/system/bt/stack/avct/
H A Davct_l2c.cc41 uint16_t psm, uint8_t id);
102 UNUSED_ATTR uint16_t psm, uint8_t id) {
136 L2CA_ConnectRsp(bd_addr, id, lcid, result, 0);
101 avct_l2c_connect_ind_cback(const RawAddress& bd_addr, uint16_t lcid, UNUSED_ATTR uint16_t psm, uint8_t id) argument
/system/bt/stack/avrc/
H A Davrc_pars_tg.cc532 uint16_t id; local
541 status = avrc_pars_pass_thru(&p_msg->pass, &id);
543 p_result->pdu = (uint8_t)id;
H A Davrc_utils.cc157 uint16_t id; local
165 BE_STREAM_TO_UINT16(id, p_data);
166 if (AVRC_IS_VALID_GROUP(id)) {
167 *p_vendor_unique_id = id;

Completed in 4757 milliseconds

1234567