Home
last modified time | relevance | path

Searched refs:android (Results 1 – 25 of 3275) sorted by relevance

12345678910>>...131

/system/tools/aidl/
Dhiddenapi-greylist1 "android.accessibilityservice.IAccessibilityServiceClient",
2 "android.accessibilityservice.IAccessibilityServiceConnection",
3 "android.accounts.IAccountAuthenticator",
4 "android.accounts.IAccountAuthenticatorResponse",
5 "android.accounts.IAccountManager",
6 "android.accounts.IAccountManagerResponse",
7 "android.app.admin.IDeviceAdminService",
8 "android.app.admin.IDevicePolicyManager",
9 "android.app.backup.IBackupManager",
10 "android.app.backup.IBackupManagerMonitor",
[all …]
/system/linkerconfig/testdata/root/system/apex/com.android.vndk.vR/etc/
Dvndkcore.libraries.R.txt1 android.frameworks.cameraservice.common@2.0.so
2 android.frameworks.cameraservice.device@2.0.so
3 android.frameworks.cameraservice.service@2.0.so
4 android.frameworks.displayservice@1.0.so
5 android.frameworks.schedulerservice@1.0.so
6 android.frameworks.sensorservice@1.0.so
7 android.frameworks.stats@1.0.so
8 android.hardware.atrace@1.0.so
9 android.hardware.audio.common@2.0.so
10 android.hardware.audio.common@4.0.so
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/include/android/aidl/tests/
DITestService.h22 namespace android {
28 class ITestService : public ::android::IInterface {
108 static const ::android::String16& STRING_TEST_CONSTANT();
109 static const ::android::String16& STRING_TEST_CONSTANT2();
111 virtual ::android::binder::Status UnimplementedMethod(int32_t arg, int32_t* _aidl_return) = 0;
112 …virtual ::android::binder::Status Deprecated() __attribute__((deprecated("to make sure we have som…
113 virtual ::android::binder::Status TestOneway() = 0;
114 virtual ::android::binder::Status RepeatBoolean(bool token, bool* _aidl_return) = 0;
115 virtual ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) = 0;
116 virtual ::android::binder::Status RepeatChar(char16_t token, char16_t* _aidl_return) = 0;
[all …]
DBnTestService.h6 namespace android {
12 class BnTestService : public ::android::BnInterface<ITestService> {
14 …static constexpr uint32_t TRANSACTION_UnimplementedMethod = ::android::IBinder::FIRST_CALL_TRANSAC…
15 static constexpr uint32_t TRANSACTION_Deprecated = ::android::IBinder::FIRST_CALL_TRANSACTION + 1;
16 static constexpr uint32_t TRANSACTION_TestOneway = ::android::IBinder::FIRST_CALL_TRANSACTION + 2;
17 …static constexpr uint32_t TRANSACTION_RepeatBoolean = ::android::IBinder::FIRST_CALL_TRANSACTION +…
18 static constexpr uint32_t TRANSACTION_RepeatByte = ::android::IBinder::FIRST_CALL_TRANSACTION + 4;
19 static constexpr uint32_t TRANSACTION_RepeatChar = ::android::IBinder::FIRST_CALL_TRANSACTION + 5;
20 static constexpr uint32_t TRANSACTION_RepeatInt = ::android::IBinder::FIRST_CALL_TRANSACTION + 6;
21 static constexpr uint32_t TRANSACTION_RepeatLong = ::android::IBinder::FIRST_CALL_TRANSACTION + 7;
[all …]
DBpTestService.h8 namespace android {
14 class BpTestService : public ::android::BpInterface<ITestService> {
16 explicit BpTestService(const ::android::sp<::android::IBinder>& _aidl_impl);
18 ::android::binder::Status UnimplementedMethod(int32_t arg, int32_t* _aidl_return) override;
19 …::android::binder::Status Deprecated() override __attribute__((deprecated("to make sure we have so…
20 ::android::binder::Status TestOneway() override;
21 ::android::binder::Status RepeatBoolean(bool token, bool* _aidl_return) override;
22 ::android::binder::Status RepeatByte(int8_t token, int8_t* _aidl_return) override;
23 ::android::binder::Status RepeatChar(char16_t token, char16_t* _aidl_return) override;
24 ::android::binder::Status RepeatInt(int32_t token, int32_t* _aidl_return) override;
[all …]
/system/bt/binder/
DAndroid.bp2 // See: http://go/android-license-faq
18 "android/bluetooth/bluetooth_device.cc",
19 "android/bluetooth/IBluetoothSocketManager.aidl",
20 "android/os/parcel_uuid.cc",
22 "android/bluetooth/IBluetooth.aidl",
23 "android/bluetooth/IBluetoothA2dp.aidl",
24 "android/bluetooth/IBluetoothA2dpSink.aidl",
25 "android/bluetooth/IBluetoothAvrcpController.aidl",
26 "android/bluetooth/IBluetoothAvrcpTarget.aidl",
27 "android/bluetooth/IBluetoothCallback.aidl",
[all …]
/system/libbase/
Dstrings_test.cpp27 std::vector<std::string> parts = android::base::Split("", ","); in TEST()
33 std::vector<std::string> parts = android::base::Split("foo", ","); in TEST()
39 std::vector<std::string> parts = android::base::Split("foo,bar,baz", ","); in TEST()
47 std::vector<std::string> parts = android::base::Split("foo,,bar", ","); in TEST()
55 std::vector<std::string> parts = android::base::Split("foo,bar,", ","); in TEST()
64 android::base::Split(std::string("foo\0bar", 7), std::string("\0", 1)); in TEST()
71 std::vector<std::string> parts = android::base::Split("foo:bar,baz", ",:"); in TEST()
79 std::vector<std::string> parts = android::base::Split("foo:,bar", ",:"); in TEST()
87 ASSERT_EQ("", android::base::Trim("")); in TEST()
91 ASSERT_EQ("foo", android::base::Trim("foo")); in TEST()
[all …]
Dparsedouble_test.cpp23 ASSERT_FALSE(android::base::ParseDouble("", &d)); in TEST()
24 ASSERT_FALSE(android::base::ParseDouble("x", &d)); in TEST()
25 ASSERT_FALSE(android::base::ParseDouble("123.4x", &d)); in TEST()
27 ASSERT_TRUE(android::base::ParseDouble("123.4", &d)); in TEST()
29 ASSERT_TRUE(android::base::ParseDouble("-123.4", &d)); in TEST()
32 ASSERT_TRUE(android::base::ParseDouble("0", &d, 0.0)); in TEST()
34 ASSERT_FALSE(android::base::ParseDouble("0", &d, 1e-9)); in TEST()
35 ASSERT_FALSE(android::base::ParseDouble("3.0", &d, -1.0, 2.0)); in TEST()
36 ASSERT_TRUE(android::base::ParseDouble("1.0", &d, 0.0, 2.0)); in TEST()
39 ASSERT_FALSE(android::base::ParseDouble("123.4x", nullptr)); in TEST()
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-cpp-source/gen/android/aidl/tests/
DITestService.cpp4 namespace android { namespace
12 const ::android::String16& ITestService::STRING_TEST_CONSTANT() { in STRING_TEST_CONSTANT()
13 static const ::android::String16 value(::android::String16("foo")); in STRING_TEST_CONSTANT()
17 const ::android::String16& ITestService::STRING_TEST_CONSTANT2() { in STRING_TEST_CONSTANT2()
18 static const ::android::String16 value(::android::String16("bar")); in STRING_TEST_CONSTANT2()
37 namespace android { namespace
43 BpTestService::BpTestService(const ::android::sp<::android::IBinder>& _aidl_impl) in BpTestService()
47 ::android::binder::Status BpTestService::UnimplementedMethod(int32_t arg, int32_t* _aidl_return) { in UnimplementedMethod()
48 ::android::Parcel _aidl_data; in UnimplementedMethod()
51 ::android::Parcel _aidl_reply; in UnimplementedMethod()
[all …]
DINamedCallback.cpp4 namespace android { namespace
22 namespace android { namespace
28 BpNamedCallback::BpNamedCallback(const ::android::sp<::android::IBinder>& _aidl_impl) in BpNamedCallback()
32 ::android::binder::Status BpNamedCallback::GetName(::android::String16* _aidl_return) { in GetName()
33 ::android::Parcel _aidl_data; in GetName()
35 ::android::Parcel _aidl_reply; in GetName()
36 ::android::status_t _aidl_ret_status = ::android::OK; in GetName()
37 ::android::binder::Status _aidl_status; in GetName()
39 if (((_aidl_ret_status) != (::android::OK))) { in GetName()
43 …if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && INamedCallback::getDefaultImpl(… in GetName()
[all …]
DIOldName.cpp4 namespace android { namespace
22 namespace android { namespace
28 BpOldName::BpOldName(const ::android::sp<::android::IBinder>& _aidl_impl) in BpOldName()
32 ::android::binder::Status BpOldName::RealName(::android::String16* _aidl_return) { in RealName()
33 ::android::Parcel _aidl_data; in RealName()
35 ::android::Parcel _aidl_reply; in RealName()
36 ::android::status_t _aidl_ret_status = ::android::OK; in RealName()
37 ::android::binder::Status _aidl_status; in RealName()
39 if (((_aidl_ret_status) != (::android::OK))) { in RealName()
43 if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && IOldName::getDefaultImpl())) { in RealName()
[all …]
DINewName.cpp4 namespace android { namespace
22 namespace android { namespace
28 BpNewName::BpNewName(const ::android::sp<::android::IBinder>& _aidl_impl) in BpNewName()
32 ::android::binder::Status BpNewName::RealName(::android::String16* _aidl_return) { in RealName()
33 ::android::Parcel _aidl_data; in RealName()
35 ::android::Parcel _aidl_reply; in RealName()
36 ::android::status_t _aidl_ret_status = ::android::OK; in RealName()
37 ::android::binder::Status _aidl_status; in RealName()
39 if (((_aidl_ret_status) != (::android::OK))) { in RealName()
43 if (UNLIKELY(_aidl_ret_status == ::android::UNKNOWN_TRANSACTION && INewName::getDefaultImpl())) { in RealName()
[all …]
/system/tools/aidl/tests/golden_output/aidl_test_loggable_interface-cpp-source/gen/android/aidl/loggable/
DILoggableInterface.cpp4 namespace android { namespace
24 namespace android { namespace
30 BpLoggableInterface::BpLoggableInterface(const ::android::sp<::android::IBinder>& _aidl_impl) in BpLoggableInterface()
36android::binder::Status BpLoggableInterface::LogThis(bool boolValue, ::std::vector<bool>* boolArra… in LogThis()
37 ::android::Parcel _aidl_data; in LogThis()
39 ::android::Parcel _aidl_reply; in LogThis()
40 ::android::status_t _aidl_ret_status = ::android::OK; in LogThis()
41 ::android::binder::Status _aidl_status; in LogThis()
42 …::android::ScopedTrace _aidl_trace(ATRACE_TAG_AIDL, "AIDL::cpp::ILoggableInterface::LogThis::cppCl… in LogThis()
45 _transaction_log.input_args.emplace_back("boolValue", ::android::internal::ToString(boolValue)); in LogThis()
[all …]
/system/apex/apexd/
Dapexd_main.cpp38 return android::apex::RunPreInstall(argv); in HandleSubcommand()
43 return android::apex::RunPostInstall(argv); in HandleSubcommand()
48 return android::apex::OnBootstrap(); in HandleSubcommand()
53 return android::apex::UnmountAll(); in HandleSubcommand()
58 return android::apex::OnOtaChrootBootstrap(); in HandleSubcommand()
65 android::base::Result<android::apex::VoldCheckpointInterface> in HandleSubcommand()
66 vold_service_st = android::apex::VoldCheckpointInterface::Create(); in HandleSubcommand()
71 android::apex::InitializeVold(&*vold_service_st); in HandleSubcommand()
74 int result = android::apex::SnapshotOrRestoreDeUserData(); in HandleSubcommand()
80 android::apex::OnAllPackagesReady(); in HandleSubcommand()
[all …]
/system/sepolicy/prebuilts/api/30.0/private/
Dhwservice_contexts1 android.frameworks.automotive.display::IAutomotiveDisplayProxyService u:object_r:fwk_automotive_dis…
2 android.frameworks.bufferhub::IBufferHub u:object_r:fwk_bufferhub_hwservice:…
3 android.frameworks.cameraservice.service::ICameraService u:object_r:fwk_camera_hwservice:s0
4 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
5 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
6 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
7 android.frameworks.stats::IStats u:object_r:fwk_stats_hwservice:s0
8 android.hardware.atrace::IAtraceDevice u:object_r:hal_atrace_hwservice:s0
9 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
10 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
[all …]
/system/sepolicy/prebuilts/api/31.0/private/
Dhwservice_contexts1 android.frameworks.automotive.display::IAutomotiveDisplayProxyService u:object_r:fwk_automotive_dis…
2 android.frameworks.bufferhub::IBufferHub u:object_r:fwk_bufferhub_hwservice:…
3 android.frameworks.cameraservice.service::ICameraService u:object_r:fwk_camera_hwservice:s0
4 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
5 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
6 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
7 android.frameworks.stats::IStats u:object_r:fwk_stats_hwservice:s0
8 android.hardware.atrace::IAtraceDevice u:object_r:hal_atrace_hwservice:s0
9 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
10 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
[all …]
/system/sepolicy/private/
Dhwservice_contexts1 android.frameworks.automotive.display::IAutomotiveDisplayProxyService u:object_r:fwk_automotive_dis…
2 android.frameworks.bufferhub::IBufferHub u:object_r:fwk_bufferhub_hwservice:…
3 android.frameworks.cameraservice.service::ICameraService u:object_r:fwk_camera_hwservice:s0
4 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
5 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
6 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
7 android.frameworks.stats::IStats u:object_r:fwk_stats_hwservice:s0
8 android.hardware.atrace::IAtraceDevice u:object_r:hal_atrace_hwservice:s0
9 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
10 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
[all …]
/system/sepolicy/prebuilts/api/28.0/private/
Dhwservice_contexts1 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
2 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
3 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
4 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
5 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
6 android.hardware.authsecret::IAuthSecret u:object_r:hal_authsecret_hwservice…
7 android.hardware.automotive.audiocontrol::IAudioControl u:object_r:hal_audiocontrol_hwservi…
8 android.hardware.automotive.evs::IEvsEnumerator u:object_r:hal_evs_hwservice:s0
9 android.hardware.automotive.vehicle::IVehicle u:object_r:hal_vehicle_hwservice:s0
10 android.hardware.biometrics.fingerprint::IBiometricsFingerprint u:object_r:hal_fingerprint_hwservic…
[all …]
/system/sepolicy/apex/
DAndroid.bp17 // http://go/android-license-faq
32 name: "com.android.adbd-file_contexts",
34 "com.android.adbd-file_contexts",
39 name: "com.android.sdkext-file_contexts",
41 "com.android.sdkext-file_contexts",
46 name: "com.android.art-file_contexts",
48 "com.android.art-file_contexts",
53 name: "com.android.art.debug-file_contexts",
55 "com.android.art.debug-file_contexts",
60 name: "com.android.bootanimation-file_contexts",
[all …]
/system/sepolicy/prebuilts/api/29.0/private/
Dhwservice_contexts1 android.frameworks.bufferhub::IBufferHub u:object_r:fwk_bufferhub_hwservice:…
2 android.frameworks.cameraservice.service::ICameraService u:object_r:fwk_camera_hwservice:s0
3 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
4 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
5 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
6 android.frameworks.stats::IStats u:object_r:fwk_stats_hwservice:s0
7 android.hardware.atrace::IAtraceDevice u:object_r:hal_atrace_hwservice:s0
8 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
9 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
10 android.hardware.authsecret::IAuthSecret u:object_r:hal_authsecret_hwservice…
[all …]
/system/update_engine/aosp/
Dbinder_service_android.h36 class BinderUpdateEngineAndroidService : public android::os::BnUpdateEngine,
51 android::binder::Status applyPayload(
52 const android::String16& url,
55 const std::vector<android::String16>& header_kv_pairs) override;
56 android::binder::Status applyPayloadFd(
57 const ::android::os::ParcelFileDescriptor& pfd,
60 const std::vector<android::String16>& header_kv_pairs) override;
61 android::binder::Status bind(
62 const android::sp<android::os::IUpdateEngineCallback>& callback,
64 android::binder::Status unbind(
[all …]
/system/sepolicy/prebuilts/api/27.0/private/
Dhwservice_contexts1 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
2 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
3 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
4 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
5 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
6 android.hardware.biometrics.fingerprint::IBiometricsFingerprint u:object_r:hal_fingerprint_hwservic…
7 android.hardware.bluetooth::IBluetoothHci u:object_r:hal_bluetooth_hwservice:…
8 android.hardware.boot::IBootControl u:object_r:hal_bootctl_hwservice:s0
9 android.hardware.broadcastradio::IBroadcastRadioFactory u:object_r:hal_broadcastradio_hwser…
10 android.hardware.camera.provider::ICameraProvider u:object_r:hal_camera_hwservice:s0
[all …]
/system/tools/aidl/tests/golden_output/aidl-test-interface-java-source/gen/android/aidl/tests/
DITestService.java4 package android.aidl.tests;
5 public interface ITestService extends android.os.IInterface
8 public static class Default implements android.aidl.tests.ITestService
21 @Override public int UnimplementedMethod(int arg) throws android.os.RemoteException in UnimplementedMethod()
29 @Override public void Deprecated() throws android.os.RemoteException in Deprecated()
32 @Override public void TestOneway() throws android.os.RemoteException in TestOneway()
36 @Override public boolean RepeatBoolean(boolean token) throws android.os.RemoteException in RepeatBoolean()
40 @Override public byte RepeatByte(byte token) throws android.os.RemoteException in RepeatByte()
44 @Override public char RepeatChar(char token) throws android.os.RemoteException in RepeatChar()
48 @Override public int RepeatInt(int token) throws android.os.RemoteException in RepeatInt()
[all …]
/system/sepolicy/prebuilts/api/26.0/private/
Dhwservice_contexts1 android.frameworks.displayservice::IDisplayService u:object_r:fwk_display_hwservice:s0
2 android.frameworks.schedulerservice::ISchedulingPolicyService u:object_r:fwk_scheduler_hwservice:…
3 android.frameworks.sensorservice::ISensorManager u:object_r:fwk_sensor_hwservice:s0
4 android.hardware.audio.effect::IEffectsFactory u:object_r:hal_audio_hwservice:s0
5 android.hardware.audio::IDevicesFactory u:object_r:hal_audio_hwservice:s0
6 android.hardware.biometrics.fingerprint::IBiometricsFingerprint u:object_r:hal_fingerprint_hwservic…
7 android.hardware.bluetooth::IBluetoothHci u:object_r:hal_bluetooth_hwservice:…
8 android.hardware.boot::IBootControl u:object_r:hal_bootctl_hwservice:s0
9 android.hardware.broadcastradio::IBroadcastRadioFactory u:object_r:hal_audio_hwservice:s0
10 android.hardware.camera.provider::ICameraProvider u:object_r:hal_camera_hwservice:s0
[all …]
/system/core/healthd/include/healthd/
Dhealthd.h60 android::String8 batteryStatusPath;
61 android::String8 batteryHealthPath;
62 android::String8 batteryPresentPath;
63 android::String8 batteryCapacityPath;
64 android::String8 batteryVoltagePath;
65 android::String8 batteryTemperaturePath;
66 android::String8 batteryTechnologyPath;
67 android::String8 batteryCurrentNowPath;
68 android::String8 batteryCurrentAvgPath;
69 android::String8 batteryChargeCounterPath;
[all …]

12345678910>>...131