Searched refs:Binder (Results 1 – 25 of 28) sorted by relevance
12
/system/connectivity/shill/ |
D | connection.h | 57 class Binder { 59 Binder(const std::string& name, const base::Closure& disconnect_callback); 60 ~Binder(); 72 FRIEND_TEST(ConnectionTest, Binder); 81 DISALLOW_COPY_AND_ASSIGN(Binder); 160 FRIEND_TEST(ConnectionTest, Binder); 191 void AttachBinder(Binder* binder); 192 void DetachBinder(Binder* binder); 224 Binder lower_binder_; 228 std::deque<Binder*> binders_;
|
D | connection.cc | 77 Connection::Binder::Binder(const string& name, in Binder() function in shill::Connection::Binder 82 Connection::Binder::~Binder() { in ~Binder() 86 void Connection::Binder::Attach(const ConnectionRefPtr& to_connection) { in Attach() 101 void Connection::Binder::OnDisconnect() { in OnDisconnect() 667 Binder* binder = binders_.front(); in NotifyBindersOnDisconnect() 673 void Connection::AttachBinder(Binder* binder) { in AttachBinder() 679 void Connection::DetachBinder(Binder* binder) { in DetachBinder()
|
D | connection_unittest.cc | 931 Connection::Binder binder0("binder0", target0.callback()); in TEST_F() 932 Connection::Binder binder1("binder1", target1.callback()); in TEST_F() 933 Connection::Binder binder2("binder2", target2.callback()); in TEST_F() 934 Connection::Binder binder3("binder3", target3.callback()); in TEST_F() 963 TEST_F(ConnectionTest, Binder) { in TEST_F() argument 965 Connection::Binder* binder = &connection_->lower_binder_; in TEST_F() 1002 Connection::Binder test_binder("from_test", target.callback()); in TEST_F() 1021 Connection::Binder binder("test", target.callback()); in TEST_F() 1041 Connection::Binder binder_a("test_a", target_a.callback()); in TEST_F() 1042 Connection::Binder binder_b("test_b", target_b.callback()); in TEST_F() [all …]
|
/system/sepolicy/ |
D | servicemanager.te | 1 # servicemanager - the Binder context manager 9 # name service (aka context manager) for Binder. 12 # or initiates a Binder IPC.
|
D | drmserver.te | 10 # Perform Binder IPC to system server. 16 # Perform Binder IPC to mediaserver 41 # Read resources from open apk files passed over Binder. 45 # Read /data/data/com.android.providers.telephony files passed over Binder.
|
D | surfaceflinger.te | 8 # Perform Binder IPC. 15 # Binder IPC to bu, presently runs in adbd domain. 18 # Read /proc/pid files for Binder clients.
|
D | mediaserver.te | 42 # Read resources from open apk files passed over Binder. 47 # Read /data/data/com.android.providers.telephony files passed over Binder. 50 # Use pipes passed over Binder from app domains.
|
D | binderservicedomain.te | 13 # Receive and write to a pipe received over Binder from an app.
|
D | update_engine.te | 53 # Register the service to perform Binder IPC.
|
D | isolated_app.te | 15 # Access already open app data files received over Binder or local socket IPC.
|
D | autoplay_app.te | 52 # Use the Binder.
|
D | te_macros | 176 # Allow domain to use Binder IPC. 202 # Mark a domain as being a Binder service domain.
|
D | mls | 106 # Binder IPC constraints
|
D | app.te | 153 # Use the Binder. 174 # Allow read/stat of /data/media files passed by Binder or local socket IPC. 177 # Read and write /data/data/com.android.providers.telephony files passed over Binder.
|
/system/bt/service/doc/ |
D | IBluetoothCallback.txt | 18 * Binder IPC callback interface for receiving notifications about the
|
D | IBluetoothLowEnergyCallback.txt | 18 * Binder IPC interface for receiving callbacks related to Bluetooth Low Energy
|
D | IBluetoothLowEnergy.txt | 18 * Binder IPC API for interacting with Bluetooth Low-Energy features.
|
D | IBluetooth.txt | 18 * Binder IPC API for talking with the Bluetooth service and perform high-level
|
D | IBluetoothGattServer.txt | 18 * Binder IPC interface for interacting with Bluetooth GATT server-role
|
D | IBluetoothGattClientCallback.txt | 18 * Binder IPC interface for receiving callbacks related to Bluetooth GATT
|
D | IBluetoothGattServerCallback.txt | 18 * Binder IPC interface for receiving callbacks related to Bluetooth GATT
|
/system/connectivity/shill/vpn/ |
D | vpn_service.h | 85 std::unique_ptr<Connection::Binder> connection_binder_;
|
D | vpn_service.cc | 168 new Connection::Binder(unique_name(), in SetConnection()
|
/system/core/metricsd/ |
D | README.md | 59 `metricsd` is the daemon that listens for metrics logging calls (via Binder), 65 * The binder thread listens for one-way Binder calls, aggregates the metrics in
|
/system/tools/aidl/docs/ |
D | aidl-cpp.md | 1 # Generating C++ Binder Interfaces with `aidl-cpp` 12 stubs for Binder interfaces from a specification in a file with the .aidl 19 objects. C++ Binder interfaces were handcrafted with various degrees of
|
12