Home
last modified time | relevance | path

Searched refs:system (Results 1 – 25 of 342) sorted by relevance

12345678910>>...14

/packages/apps/Test/connectivity/sl4n/
DREADME.md10 Building SL4N requires a system build.
30 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/bin/sl4n /system/bin
34 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/lib/libbinder.so /system/lib
35 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/lib/libchrome.so /system/lib
36 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/lib/libevent.so /system/lib
40 cd <ANDROID_SOURCE_ROOT>/system/bt/service
42 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/bin/bluetoothtbd /system/bin
49 adb shell -c "/system/bin/sl4n" &
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DSplineMath.java114 double[][] system = new double[n][3]; in solveSystem() local
117 system[0][1] = 1; in solveSystem()
118 system[n - 1][1] = 1; in solveSystem()
131 system[i][0] = d6 * deltaPrevX; // a_i in solveSystem()
132 system[i][1] = d3 * deltaX; // b_i in solveSystem()
133 system[i][2] = d6 * deltaNextX; // c_i in solveSystem()
140 double m = system[i][0] / system[i - 1][1]; in solveSystem()
142 system[i][1] = system[i][1] - m * system[i - 1][2]; in solveSystem()
148 solution[n - 1] = result[n - 1] / system[n - 1][1]; in solveSystem()
150 solution[i] = (result[i] - system[i][2] * solution[i + 1]) / system[i][1]; in solveSystem()
/packages/apps/ThemePicker/src/com/android/customization/model/theme/
DOverlayThemeExtractor.java171 Resources system = Resources.getSystem(); in addSystemDefaultShape() local
172 String iconMaskPath = system.getString( in addSystemDefaultShape()
173 system.getIdentifier(ResourceConstants.CONFIG_ICON_MASK, in addSystemDefaultShape()
177 system.getDimensionPixelOffset( in addSystemDefaultShape()
178 system.getIdentifier(ResourceConstants.CONFIG_CORNERRADIUS, in addSystemDefaultShape()
183 Resources system = Resources.getSystem(); in addSystemDefaultColor() local
184 int colorAccentLight = system.getColor( in addSystemDefaultColor()
185 system.getIdentifier(ResourceConstants.ACCENT_COLOR_LIGHT_NAME, "color", in addSystemDefaultColor()
189 int colorAccentDark = system.getColor( in addSystemDefaultColor()
190 system.getIdentifier(ResourceConstants.ACCENT_COLOR_DARK_NAME, "color", in addSystemDefaultColor()
[all …]
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/common/
DExtraSettingsLoaderTest.java88 resolveInfoSystem.system = true; in testLoadPreference_stringResources_shouldLoadResources()
118 resolveInfoSystem.system = true; in testLoadPreference_metadataBundleIsValue()
123 resolveInfoNonSystem.system = false; in testLoadPreference_metadataBundleIsValue()
158 resolveInfoSystem.system = true; in testLoadPreference_integerResources_shouldLoadResources()
163 resolveInfoNonSystem.system = false; in testLoadPreference_integerResources_shouldLoadResources()
193 resolveInfoSystem.system = true; in testLoadPreference_noDefaultSummary()
221 resolveInfoSystem.system = true; in testLoadPreference_noCategory_shouldSetToDeviceCategory()
250 resolveInfoSystem.system = true; in testLoadPreference_noCategoryMatched_shouldNotReturnPreferences()
275 resolveInfoSystem.system = true; in testLoadPreference_shouldLoadDefaultIcon()
300 resolveInfoNonSystem1.system = false; in testLoadPreference_noSystemApp_returnsNoPreferences()
[all …]
/packages/services/Car/car-lib/
DAndroid.bp68 "system/bt/binder",
111 name: "android-car-last-released-system-api",
113 "api/system-released/*.txt",
115 …p -f $$(echo $(in) | tr \" \" \"\\n\" | sort -n | tail -1) $(genDir)/last-released-system-api.txt",
117 "last-released-system-api.txt",
148 name: "android.car-system-stubs-docs",
158 api_file: ":android-car-last-released-system-api",
159 removed_api_file: "api/system-removed.txt",
165 api_file: "api/system-current.txt",
166 removed_api_file: "api/system-removed.txt",
[all …]
/packages/modules/NetworkStack/tests/unit/src/android/net/util/
DPacketReaderTest.java20 import static android.system.OsConstants.AF_INET6;
21 import static android.system.OsConstants.IPPROTO_UDP;
22 import static android.system.OsConstants.SOCK_DGRAM;
23 import static android.system.OsConstants.SOCK_NONBLOCK;
24 import static android.system.OsConstants.SOL_SOCKET;
25 import static android.system.OsConstants.SO_SNDTIMEO;
34 import android.system.ErrnoException;
35 import android.system.Os;
36 import android.system.StructTimeval;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DSpline.java350 double[][] system = new double[n][3]; in solveSystem() local
353 system[0][1] = 1; in solveSystem()
354 system[n - 1][1] = 1; in solveSystem()
367 system[i][0] = d6 * deltaPrevX; // a_i in solveSystem()
368 system[i][1] = d3 * deltaX; // b_i in solveSystem()
369 system[i][2] = d6 * deltaNextX; // c_i in solveSystem()
376 double m = system[i][0] / system[i - 1][1]; in solveSystem()
378 system[i][1] = system[i][1] - m * system[i - 1][2]; in solveSystem()
384 solution[n - 1] = result[n - 1] / system[n - 1][1]; in solveSystem()
386 solution[i] = (result[i] - system[i][2] * solution[i + 1]) / system[i][1]; in solveSystem()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/
DTouchInteractionService.java26 import static com.android.systemui.shared.system.QuickStepContract.KEY_EXTRA_INPUT_MONITOR;
27 import static com.android.systemui.shared.system.QuickStepContract.KEY_EXTRA_SYSUI_PROXY;
28 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_CLICKABL…
29 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_A11Y_BUTTON_LONG_CLI…
30 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_HOME_DISABLED;
31 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_NAV_BAR_HIDDEN;
32 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_NOTIFICATION_PANEL_E…
33 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_OVERVIEW_DISABLED;
34 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_SCREEN_PINNING;
35 import static com.android.systemui.shared.system.QuickStepContract.SYSUI_STATE_STATUS_BAR_KEYGUARD_…
[all …]
DRecentsActivity.java25 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_CLOSING;
46 import com.android.systemui.shared.system.ActivityOptionsCompat;
47 import com.android.systemui.shared.system.RemoteAnimationAdapterCompat;
48 import com.android.systemui.shared.system.RemoteAnimationRunnerCompat;
49 import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
/packages/apps/Nfc/nci/jni/
DAndroid.bp16 "system/nfc/src/nfa/include",
17 "system/nfc/src/nfc/include",
18 "system/nfc/src/include",
19 "system/nfc/src/gki/ulinux",
20 "system/nfc/src/gki/common",
21 "system/nfc/utils/include",
/packages/apps/TV/tuner/SampleNetworkTuner/src/com/android/tv/tuner/sample/network/
DREADME.md10 * system privileged app
11 * The DVB_DEVICE permission requires the app to be a privileged system app
24 Edit system/etc/permissions/privapp-permissions-atv.xml
32 ### Push to system/priv-app
35 adb shell mkdir /system/priv-app/SampleNetworkTuner
36 adb push <path to apk> /system/priv-app/SampleNetworkTuner/SampleNetworkTuner.apk
/packages/apps/TV/tuner/SampleDvbTuner/src/com/android/tv/tuner/sample/dvb/
DREADME.md10 * system privileged app
11 * The DVB_DEVICE permission requires the app to be a privileged system app
24 Edit system/etc/permissions/privapp-permissions-atv.xml
32 ### Push to system/priv-app
35 adb shell mkdir /system/priv-app/SampleDvbTuner
36 adb push <path to apk> /system/priv-app/SampleDvbTuner/SampleDvbTuner.apk
/packages/modules/NetworkStack/src/android/net/ip/
DConnectivityPacketTracker.java20 import static android.system.OsConstants.AF_PACKET;
21 import static android.system.OsConstants.ARPHRD_ETHER;
22 import static android.system.OsConstants.ETH_P_ALL;
23 import static android.system.OsConstants.SOCK_NONBLOCK;
24 import static android.system.OsConstants.SOCK_RAW;
31 import android.system.ErrnoException;
32 import android.system.Os;
DIpNeighborMonitor.java23 import static android.system.OsConstants.AF_NETLINK;
24 import static android.system.OsConstants.NETLINK_ROUTE;
25 import static android.system.OsConstants.SOCK_DGRAM;
26 import static android.system.OsConstants.SOCK_NONBLOCK;
39 import android.system.ErrnoException;
40 import android.system.Os;
41 import android.system.OsConstants;
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DStorageItemPreferenceControllerTest.java286 final StorageItemPreference system = new StorageItemPreference(mContext); in testMeasurementCompletedUpdatesPreferences() local
300 .thenReturn(system); in testMeasurementCompletedUpdatesPreferences()
343 final StorageItemPreference system = spy(new StorageItemPreference(mContext)); in settingUserIdAppliesNewIcons() local
344 system.setIcon(R.drawable.ic_system_update); in settingUserIdAppliesNewIcons()
359 .thenReturn(system); in settingUserIdAppliesNewIcons()
371 verify(system, times(2)).setIcon(nullable(Drawable.class)); in settingUserIdAppliesNewIcons()
381 final StorageItemPreference system = new StorageItemPreference(mContext); in displayPreference_dontHideFilePreferenceWhenEmulatedInternalStorageUsed() local
393 .thenReturn(system); in displayPreference_dontHideFilePreferenceWhenEmulatedInternalStorageUsed()
411 final StorageItemPreference system = new StorageItemPreference(mContext); in displayPreference_hideFilePreferenceWhenEmulatedStorageUnreadable() local
423 .thenReturn(system); in displayPreference_hideFilePreferenceWhenEmulatedStorageUnreadable()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepAppTransitionManagerImpl.java34 import static com.android.systemui.shared.system.QuickStepContract.getWindowCornerRadius;
35 import static com.android.systemui.shared.system.QuickStepContract.supportsRoundedCornersOnWindows;
36 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_CLOSING;
37 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_OPENING;
72 import com.android.systemui.shared.system.ActivityCompat;
73 import com.android.systemui.shared.system.ActivityOptionsCompat;
74 import com.android.systemui.shared.system.QuickStepContract;
75 import com.android.systemui.shared.system.RemoteAnimationAdapterCompat;
76 import com.android.systemui.shared.system.RemoteAnimationDefinitionCompat;
77 import com.android.systemui.shared.system.RemoteAnimationRunnerCompat;
[all …]
/packages/apps/Launcher3/go/quickstep/src/com/android/quickstep/
DAppToOverviewAnimationProvider.java21 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.ACTIVITY_TYPE_HOME;
22 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_CLOSING;
23 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_OPENING;
36 import com.android.systemui.shared.system.ActivityOptionsCompat;
37 import com.android.systemui.shared.system.RemoteAnimationAdapterCompat;
38 import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DRecentTasksList.java27 import com.android.systemui.shared.system.ActivityManagerWrapper;
28 import com.android.systemui.shared.system.BackgroundExecutor;
29 import com.android.systemui.shared.system.KeyguardManagerCompat;
30 import com.android.systemui.shared.system.RecentTaskInfoCompat;
31 import com.android.systemui.shared.system.TaskDescriptionCompat;
32 import com.android.systemui.shared.system.TaskStackChangeListener;
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/util/
DClipAnimationHelper.java19 import static com.android.systemui.shared.system.QuickStepContract.getWindowCornerRadius;
20 import static com.android.systemui.shared.system.QuickStepContract.supportsRoundedCornersOnWindows;
21 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_CLOSING;
22 import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_OPENING;
47 import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
48 import com.android.systemui.shared.system.SyncRtSurfaceTransactionApplierCompat;
49 import com.android.systemui.shared.system.SyncRtSurfaceTransactionApplierCompat.SurfaceParams;
50 import com.android.systemui.shared.system.TransactionCompat;
51 import com.android.systemui.shared.system.WindowManagerWrapper;
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/
DUserEventDispatcherExtension.java23 import static com.android.systemui.shared.system.LauncherEventUtil.VISIBLE;
24 import static com.android.systemui.shared.system.LauncherEventUtil.DISMISS;
25 import static com.android.systemui.shared.system.LauncherEventUtil.RECENTS_QUICK_SCRUB_ONBOARDING_T…
26 import static com.android.systemui.shared.system.LauncherEventUtil.RECENTS_SWIPE_UP_ONBOARDING_TIP;
30 import com.android.systemui.shared.system.MetricsLoggerCompat;
/packages/apps/ThemePicker/src/com/android/customization/model/theme/custom/
DFontOptionsProvider.java71 Resources system = Resources.getSystem(); in addDefault() local
72 Typeface headlineFont = Typeface.create(system.getString(system.getIdentifier( in addDefault()
75 Typeface bodyFont = Typeface.create(system.getString(system.getIdentifier( in addDefault()
/packages/services/Car/evs/sepolicy/
Dfile_contexts6 /system/bin/android\.hardware\.automotive\.evs@1\.0-sample u:object_r:hal_evs_driver_exec:s0
7 /system/bin/android\.automotive\.evs\.manager@1\.0 u:object_r:evs_manager_exec:s0
8 /system/bin/evs_app u:object_r:evs_app_exec:s0
9 /system/etc/automotive/evs(/.*)? u:object_r:evs_app_files:s0
/packages/services/Car/tools/ioanalyze/
Danalyzer.py242 system = SystemActivity() variable
243 system.loadDocument(document)
246 prettyPrintBytes(system.totalWrittenBytes),
247 prettyPrintBytes(system.foregroundWrittenBytes),
248 prettyPrintBytes(system.backgroundWrittenBytes)))
250 writemost = filter(lambda ua: ua.totalWrittenBytes > 0, system.sorted(lambda ua: ua.totalWrittenByt…
264 system.pie()
/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpClient.java33 import static android.system.OsConstants.AF_INET;
34 import static android.system.OsConstants.AF_PACKET;
35 import static android.system.OsConstants.ETH_P_IP;
36 import static android.system.OsConstants.IPPROTO_UDP;
37 import static android.system.OsConstants.SOCK_DGRAM;
38 import static android.system.OsConstants.SOCK_RAW;
39 import static android.system.OsConstants.SOL_SOCKET;
40 import static android.system.OsConstants.SO_BROADCAST;
41 import static android.system.OsConstants.SO_RCVBUF;
42 import static android.system.OsConstants.SO_REUSEADDR;
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DRemoteAnimationProvider.java23 import com.android.systemui.shared.system.ActivityOptionsCompat;
24 import com.android.systemui.shared.system.RemoteAnimationAdapterCompat;
25 import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
26 import com.android.systemui.shared.system.TransactionCompat;

12345678910>>...14