Searched refs:set (Results 1 - 25 of 201) sorted by relevance

123456789

/system/bt/btif/include/
H A Dbtif_uid.h27 * Creates a UID set to keep track of traffic per UID.
32 void uid_set_destroy(uid_set_t* set);
34 void uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes);
35 void uid_set_add_rx(uid_set_t* set, int32_t app_uid, uint64_t bytes);
43 bt_uid_traffic_t* uid_set_read_and_clear(uid_set_t* set);
/system/libvintf/include/vintf/
H A DHalInterface.h20 #include <set>
29 std::set<std::string> instances;
/system/bt/btif/src/
H A Dbtif_uid.cc41 uid_set_t* set = (uid_set_t*)osi_calloc(sizeof(uid_set_t)); local
42 return set;
45 void uid_set_destroy(uid_set_t* set) { argument
46 std::unique_lock<std::mutex> lock(set->lock);
47 uid_set_node_t* node = set->head;
53 set->head = NULL;
54 osi_free(set);
58 static uid_set_node_t* uid_set_find_or_create_node(uid_set_t* set, argument
60 uid_set_node_t* node = set->head;
68 node->next = set
74 uid_set_add_tx(uid_set_t* set, int32_t app_uid, uint64_t bytes) argument
82 uid_set_add_rx(uid_set_t* set, int32_t app_uid, uint64_t bytes) argument
90 uid_set_read_and_clear(uid_set_t* set) argument
[all...]
/system/bt/btcore/include/
H A Ddevice_class.h72 void device_class_set_limited(bt_device_class_t* dc, bool set);
75 void device_class_set_positioning(bt_device_class_t* dc, bool set);
78 void device_class_set_networking(bt_device_class_t* dc, bool set);
81 void device_class_set_rendering(bt_device_class_t* dc, bool set);
84 void device_class_set_capturing(bt_device_class_t* dc, bool set);
87 void device_class_set_object_transfer(bt_device_class_t* dc, bool set);
90 void device_class_set_audio(bt_device_class_t* dc, bool set);
93 void device_class_set_telephony(bt_device_class_t* dc, bool set);
96 void device_class_set_information(bt_device_class_t* dc, bool set);
/system/update_engine/
H A Ddaemon_state_interface.h23 #include <set>
40 // Return the set of current observers.
41 virtual const std::set<ServiceObserverInterface*>& service_observers() = 0;
H A Ddaemon_state_android.h21 #include <set>
46 const std::set<ServiceObserverInterface*>& service_observers() override {
54 std::set<ServiceObserverInterface*> service_observers_;
/system/update_engine/payload_generator/
H A Dcycle_breaker.h35 #include <set>
46 void BreakCycles(const Graph& graph, std::set<Edge>* out_cut_edges);
62 std::set<Edge> cut_edges_;
H A Dtopological_sort.cc19 #include <set>
24 using std::set;
31 set<Vertex::Index>* visited_nodes,
49 set<Vertex::Index> visited_nodes;
/system/extras/simpleperf/
H A DInplaceSamplerClient.h21 #include <set>
31 const std::set<pid_t>& tids);
41 InplaceSamplerClient(const perf_event_attr& attr, pid_t pid, const std::set<pid_t>& tids);
48 const std::set<pid_t> tids_;
H A Devent_selection_set.h22 #include <set>
92 void AddMonitoredProcesses(const std::set<pid_t>& processes) {
96 void AddMonitoredThreads(const std::set<pid_t>& threads) {
100 const std::set<pid_t>& GetMonitoredProcesses() const { return processes_; }
102 const std::set<pid_t>& GetMonitoredThreads() const { return threads_; }
143 const std::map<pid_t, std::set<pid_t>>& process_map);
160 std::set<pid_t> processes_;
161 std::set<pid_t> threads_;
167 std::set<int> monitored_cpus_;
/system/libvintf/
H A DHalInterface.cpp17 #include <set>
/system/netd/server/
H A DVirtualNetwork.h20 #include <set>
45 const std::set<uid_t>& protectableUsers) WARN_UNUSED_RESULT;
47 const std::set<uid_t>& protectableUsers) WARN_UNUSED_RESULT;
54 const std::set<uid_t>& protectableUsers);
H A DNetwork.h22 #include <set>
47 const std::set<std::string>& getInterfaces() const;
60 std::set<std::string> mInterfaces;
H A DTetherController.h23 #include <set>
38 std::set<std::string> mForwardingRequests;
/system/keymaster/
H A Dauthorization_set_test.cpp36 AuthorizationSet set(params, array_length(params));
37 EXPECT_EQ(8U, set.size());
48 AuthorizationSet set(params, array_length(params));
49 AuthorizationSet set2(set);
50 EXPECT_EQ(set, set2);
68 AuthorizationSet set(AuthorizationSetBuilder()
78 EXPECT_EQ(8U, set.size());
80 int pos = set.find(TAG_ALGORITHM);
82 EXPECT_EQ(KM_TAG_ALGORITHM, set[pos].tag);
83 EXPECT_EQ(KM_ALGORITHM_RSA, set[po
[all...]
H A Dauthorization_set.cpp38 elems_ = builder.set.elems_;
39 builder.set.elems_ = NULL;
41 elems_size_ = builder.set.elems_size_;
42 builder.set.elems_size_ = 0;
44 elems_capacity_ = builder.set.elems_capacity_;
45 builder.set.elems_capacity_ = 0;
47 indirect_data_ = builder.set.indirect_data_;
48 builder.set.indirect_data_ = NULL;
50 indirect_data_capacity_ = builder.set.indirect_data_capacity_;
51 builder.set
106 MoveFrom(AuthorizationSet& set) argument
182 Union(const keymaster_key_param_set_t& set) argument
190 Difference(const keymaster_key_param_set_t& set) argument
269 push_back(const keymaster_key_param_set_t& set) argument
[all...]
/system/tools/hidl/
H A DNamedType.cpp33 void NamedType::addNamedTypesToSet(std::set<const FQName> &set) const {
34 set.insert(mFullName);
H A DPointerType.h32 void addNamedTypesToSet(std::set<const FQName> &set) const override;
H A DDeathRecipientType.h28 void addNamedTypesToSet(std::set<const FQName> &set) const override;
H A DNamedType.h37 void addNamedTypesToSet(std::set<const FQName> &set) const override;
50 // returns null if no location is set for this type.
/system/core/libprocinfo/
H A Dprocess_test.cpp24 #include <set>
78 std::set<pid_t> set;
79 ASSERT_TRUE(android::procinfo::GetProcessTids(getpid(), &set));
80 ASSERT_EQ(1, std::count(set.begin(), set.end(), main_tid));
81 ASSERT_EQ(1, std::count(set.begin(), set.end(), thread_tid));
/system/chre/platform/include/chre/platform/
H A Dsystem_timer.h77 bool set(SystemTimerCallback *callback, void *data, Nanoseconds delay);
82 * restarted by a subsequent call to set().
/system/core/libpixelflinger/arch-mips/
H A Dt32cb16blend.S41 DBG .set noat
43 DBG .set at
82 DBG .set noat
89 DBG .set at
99 DBG .set push
100 DBG .set noat
101 DBG .set mips32r2
103 DBG .set pop
167 DBG .set push
168 DBG .set noa
[all...]
/system/keymaster/include/keymaster/
H A Dauthorization_set.h54 * set, if allocations might fail.
61 explicit AuthorizationSet(const keymaster_key_param_set_t& set) : indirect_data_(nullptr) { argument
63 Reinitialize(set.params, set.length);
79 AuthorizationSet(const AuthorizationSet& set) : Serializable(), indirect_data_(nullptr) { argument
81 error_ = set.error_;
83 Reinitialize(set.elems_, set.elems_size_);
87 AuthorizationSet(AuthorizationSet&& set) : Serializable() { argument
88 MoveFrom(set);
92 operator =(const AuthorizationSet& set) argument
99 operator =(AuthorizationSet&& set) argument
118 Reinitialize(const AuthorizationSet& set) argument
122 Reinitialize(const keymaster_key_param_set_t& set) argument
546 AuthorizationSet set; member in class:keymaster::AuthorizationSetBuilder
[all...]
/system/update_engine/update_manager/
H A Ddevice_policy_provider.h20 #include <set>
52 // Variable returning the set of connection types allowed for updates. The
55 virtual Variable<std::set<chromeos_update_engine::ConnectionType>>*

Completed in 481 milliseconds

123456789