Searched refs:android (Results 226 - 250 of 1593) sorted by relevance

1234567891011>>

/system/bt/service/common/android/bluetooth/
H A Dscan_result.cc17 #include "android/bluetooth/scan_result.h"
24 using android::Parcelable;
25 using android::Parcel;
26 using android::String8;
27 using android::String16;
28 using android::status_t;
29 using android::OK;
31 namespace android { namespace
60 } // namespace android
H A Dbluetooth_gatt_descriptor.cc17 #include "android/bluetooth/bluetooth_gatt_descriptor.h"
18 #include "android/bluetooth/uuid.h"
23 using android::OK;
24 using android::String8;
25 using android::String16;
27 namespace android { namespace
60 } // namespace android
H A Dbluetooth_gatt_included_service.cc17 #include "android/bluetooth/bluetooth_gatt_characteristic.h"
18 #include "android/bluetooth/bluetooth_gatt_service.h"
19 #include "android/bluetooth/uuid.h"
24 using android::OK;
25 using android::String8;
26 using android::String16;
28 namespace android { namespace
58 } // namespace android
H A Dbluetooth_gatt_included_service.h24 using android::Parcel;
25 using android::Parcelable;
26 using android::status_t;
30 namespace android { namespace
47 // Returns android::OK on success and an appropriate error otherwise.
54 // Returns android::OK on success and an appropriate error otherwise.
67 } // namespace android
H A Dbluetooth_gatt_service.h19 #include "android/bluetooth/bluetooth_gatt_included_service.h"
25 using android::Parcel;
26 using android::Parcelable;
27 using android::status_t;
29 namespace android { namespace
48 // Returns android::OK on success and an appropriate error otherwise.
55 // Returns android::OK on success and an appropriate error otherwise.
59 } // namespace android
/system/security/keystore/
H A Dkeystore_get_wifi_hidl.cpp23 #include <android/system/wifi/keystore/1.0/IKeystore.h>
28 using namespace android;
30 using android::hardware::hidl_string;
31 using android::hardware::hidl_vec;
32 using android::hardware::Return;
33 using android::sp;
34 using android::system::wifi::keystore::V1_0::IKeystore;
/system/tools/aidl/
H A DAndroid.mk36 tests/android/aidl/tests/INamedCallback.aidl \
37 tests/android/aidl/tests/ITestService.aidl \
38 tests/java_app/src/android/aidl/tests/NullableTests.java \
39 tests/java_app/src/android/aidl/tests/SimpleParcelable.java \
40 tests/java_app/src/android/aidl/tests/TestFailException.java \
41 tests/java_app/src/android/aidl/tests/TestLogger.java \
42 tests/java_app/src/android/aidl/tests/TestServiceClient.java
/system/connectivity/wificond/
H A Dlooper_backed_event_loop.cpp19 #include <android-base/logging.h>
25 class EventLoopCallback : public android::MessageHandler {
33 virtual void handleMessage(const android::Message& message) {
43 class WatchFdCallback : public android::LooperCallback {
67 namespace android { namespace
73 looper_ = android::Looper::prepare(Looper::PREPARE_ALLOW_NON_CALLBACKS);
80 sp<android::MessageHandler> event_loop_callback =
88 sp<android::MessageHandler> looper_callback = new EventLoopCallback(callback);
96 sp<android::LooperCallback> watch_fd_callback = new WatchFdCallback(callback);
139 } // namespace android
[all...]
H A Dparcelable_utils.h20 namespace android { namespace
37 } // namespace android
/system/bt/service/example/heart_rate/
H A Dheart_rate_server.h27 #include <android/bluetooth/BnBluetoothGattServerCallback.h>
28 #include <android/bluetooth/IBluetooth.h>
30 using android::binder::Status;
31 using android::String16;
38 : public android::bluetooth::BnBluetoothGattServerCallback {
40 HeartRateServer(android::sp<android::bluetooth::IBluetooth> bluetooth,
61 const android::bluetooth::BluetoothGattService& service) override;
93 android::sp<android
[all...]
H A Dserver_main.cc29 #include <android/bluetooth/IBluetooth.h>
33 using android::sp;
34 using android::OK;
35 using android::bluetooth::IBluetooth;
37 using android::getService;
51 class BluetoothDeathRecipient : public android::IBinder::DeathRecipient {
59 // android::IBinder::DeathRecipient override:
60 void binderDied(const android::wp<android::IBinder>& /* who */) override {
68 android
[all...]
/system/bt/service/ipc/binder/
H A Dbluetooth_gatt_server_binder_server.h21 #include <android/bluetooth/BnBluetoothGattServer.h>
22 #include <android/bluetooth/IBluetoothGattServerCallback.h>
27 using android::bluetooth::BnBluetoothGattServer;
28 using android::bluetooth::IBluetoothGattServerCallback;
30 using ::android::binder::Status;
49 const ::android::sp<::android::bluetooth::IBluetoothGattServerCallback>&
55 const ::android::bluetooth::BluetoothGattService& service,
58 const ::android::String16& device_address,
63 const ::android
[all...]
/system/connectivity/wificond/tests/integration/
H A Dbinder_dispatcher.h22 #include <android-base/logging.h>
23 #include <android-base/macros.h>
30 namespace android { namespace
74 } // namespace android
/system/connectivity/wificond/tests/
H A Dmock_client_interface_impl.cpp27 namespace android { namespace
36 android::wifi_system::InterfaceTool* interface_tool,
37 android::wifi_system::SupplicantManager* supplicant_manager,
53 } // namespace android
H A Dmock_offload_scan_manager.cpp19 namespace android { namespace
28 } // namespace android
/system/core/adb/
H A Dadb_trace.h20 #include <android-base/logging.h>
21 #include <android-base/stringprintf.h>
54 VLOG(TRACE_TAG) << android::base::StringPrintf(__VA_ARGS__)
/system/core/base/
H A Dscopeguard_test.cpp17 #include "android-base/scopeguard.h"
26 auto scopeguard = android::base::make_scope_guard([&guarded_var] { guarded_var = false; });
34 auto scopeguard = android::base::make_scope_guard([&guarded_var] { guarded_var = false; });
42 auto scopeguard = android::base::make_scope_guard([&guarded_var] { guarded_var = false; });
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/src/main/java/com/example/simpleperf/simpleperfexamplewithnative/
H A DMainActivity.java3 import android.support.v7.app.AppCompatActivity;
4 import android.os.Bundle;
5 import android.widget.TextView;
/system/libhidl/transport/include/hidl/
H A DHidlPassthroughSupport.h20 #include <android/hidl/base/1.0/IBase.h>
22 namespace android { namespace
31 sp<::android::hidl::base::V1_0::IBase> wrapPassthrough(
51 } // namespace android
/system/tools/hidl/c2hal/
H A DEnumVarDeclaration.h20 #include <android-base/macros.h>
21 #include <android-base/logging.h>
26 namespace android { namespace
49 } // namespace android
H A DInclude.h22 #include <android-base/macros.h>
23 #include <android-base/logging.h>
27 namespace android { namespace
47 } // namespace android
H A DNote.h20 #include <android-base/macros.h>
21 #include <android-base/logging.h>
26 namespace android { namespace
49 } // namespace android
H A DTypeDef.h20 #include <android-base/macros.h>
21 #include <android-base/logging.h>
26 namespace android { namespace
44 } // namespace android
/system/sepolicy/vendor/
H A Dfile_contexts4 /(vendor|system/vendor)/bin/hw/android\.hardware\.audio@2\.0-service u:object_r:hal_audio_default_exec:s0
5 /(vendor|system/vendor)/bin/hw/android\.hardware\.bluetooth@1\.0-service u:object_r:hal_bluetooth_default_exec:s0
6 /(vendor|system/vendor)/bin/hw/android\.hardware\.biometrics\.fingerprint@2\.1-service u:object_r:hal_fingerprint_default_exec:s0
7 /(vendor|system/vendor)/bin/hw/android\.hardware\.boot@1\.0-service u:object_r:hal_bootctl_default_exec:s0
8 /(vendor|system/vendor)/bin/hw/android\.hardware\.broadcastradio@1\.1-service u:object_r:hal_broadcastradio_default_exec:s0
9 /(vendor|system/vendor)/bin/hw/android\.hardware\.camera\.provider@2\.4-service u:object_r:hal_camera_default_exec:s0
10 /(vendor|system/vendor)/bin/hw/android\.hardware\.configstore@1\.[0-9]+-service u:object_r:hal_configstore_default_exec:s0
11 /(vendor|system/vendor)/bin/hw/android\.hardware\.contexthub@1\.0-service u:object_r:hal_contexthub_default_exec:s0
12 /(vendor|system/vendor)/bin/hw/android\.hardware\.drm@1\.0-service u:object_r:hal_drm_default_exec:s0
13 /(vendor|system/vendor)/bin/hw/android\
[all...]
/system/connectivity/wificond/scanning/
H A Doffload_scan_callback_interface.h23 namespace android { namespace
40 } // namespace android

Completed in 1942 milliseconds

1234567891011>>