Home
last modified time | relevance | path

Searched refs:on (Results 1 – 25 of 2045) sorted by relevance

12345678910>>...82

/frameworks/native/opengl/tests/gl_jni/jni/
Dgl_code.cpp120 const unsigned int on = 0xff0000ff; in create_texture() local
124 on, off, on, off, on, off, on, off, in create_texture()
125 off, on, off, on, off, on, off, on, in create_texture()
126 on, off, on, off, on, off, on, off, in create_texture()
127 off, on, off, on, off, on, off, on, in create_texture()
128 on, off, on, off, on, off, on, off, in create_texture()
129 off, on, off, on, off, on, off, on, in create_texture()
130 on, off, on, off, on, off, on, off, in create_texture()
131 off, on, off, on, off, on, off, on, in create_texture()
/frameworks/native/opengl/tests/tritex/
Dtritex.cpp204 const unsigned int on = 0xff0000ff; in create_texture() local
208 on, off, on, off, on, off, on, off, in create_texture()
209 off, on, off, on, off, on, off, on, in create_texture()
210 on, off, on, off, on, off, on, off, in create_texture()
211 off, on, off, on, off, on, off, on, in create_texture()
212 on, off, on, off, on, off, on, off, in create_texture()
213 off, on, off, on, off, on, off, on, in create_texture()
214 on, off, on, off, on, off, on, off, in create_texture()
215 off, on, off, on, off, on, off, on, in create_texture()
/frameworks/base/test-mock/api/
Dlint-baseline.txt9 Missing nullability on parameter `newConfig` in method `onConfigurationChanged`
11 Missing nullability on parameter `context` in method `attachInfo`
13 Missing nullability on parameter `info` in method `attachInfo`
15 Missing nullability on parameter `uri` in method `bulkInsert`
17 Missing nullability on parameter `values` in method `bulkInsert`
19 Missing nullability on method `getStreamTypes` return
21 Missing nullability on parameter `url` in method `getStreamTypes`
23 Missing nullability on parameter `mimeTypeFilter` in method `getStreamTypes`
25 Missing nullability on parameter `service` in method `bindIsolatedService`
27 Missing nullability on parameter `instanceName` in method `bindIsolatedService`
[all …]
Dsystem-lint-baseline.txt7 Missing nullability on method `registerReceiverForAllUsers` return
9 Missing nullability on parameter `receiver` in method `registerReceiverForAllUsers`
11 Missing nullability on parameter `filter` in method `registerReceiverForAllUsers`
13 Missing nullability on parameter `broadcastPermission` in method `registerReceiverForAllUsers`
15 Missing nullability on parameter `scheduler` in method `registerReceiverForAllUsers`
/frameworks/native/opengl/tests/gl_basic/
Dgl_basic.cpp313 const unsigned int on = 0xff0000ff; in create_texture() local
317 on, off, on, off, on, off, on, off, in create_texture()
318 off, on, off, on, off, on, off, on, in create_texture()
319 on, off, on, off, on, off, on, off, in create_texture()
320 off, on, off, on, off, on, off, on, in create_texture()
321 on, off, on, off, on, off, on, off, in create_texture()
322 off, on, off, on, off, on, off, on, in create_texture()
323 on, off, on, off, on, off, on, off, in create_texture()
324 off, on, off, on, off, on, off, on, in create_texture()
/frameworks/base/test-runner/api/
Dlint-baseline.txt45 Missing nullability on method `getMessage` return
47 Missing nullability on parameter `arguments` in method `onCreate`
49 Missing nullability on parameter `service` in method `bindIsolatedService`
51 Missing nullability on parameter `instanceName` in method `bindIsolatedService`
53 Missing nullability on parameter `executor` in method `bindIsolatedService`
55 Missing nullability on parameter `conn` in method `bindIsolatedService`
57 Missing nullability on parameter `service` in method `bindService`
59 Missing nullability on parameter `conn` in method `bindService`
61 Missing nullability on parameter `service` in method `bindService`
63 Missing nullability on parameter `executor` in method `bindService`
[all …]
/frameworks/base/core/java/android/net/
Dnetwork-policy-restrictions.md3 …as network access while on background depending on the status of Data Saver mode, Battery Saver mo…
9 The cells define the network status when the app is on background.
13 * **DS ON**: Data Saver Mode is on
15 * **BS ON**: Battery Saver Mode is on
20 * **ok**: network access granted while app on background (NetworkInfo's state/detailed state should…
21 * **blk**: network access blocked while app on background (NetworkInfo's state/detailed state shoul…
/frameworks/av/media/audioserver/
Daudioserver.rc16 on property:vts.native_server.on=1
18 on property:vts.native_server.on=0
21 on property:init.svc.audioserver=stopped
38 on property:init.svc.audioserver=running
46 on property:sys.audio.restart.hal=1
62 on init
/frameworks/proto_logging/stats/enums/stats/textclassifier/
Dtextclassifier_enums.proto11 * distributed under the License is distributed on an "AS IS" BASIS,
39 // User clicked on Copy action.
41 // User clicked on Paste action.
43 // User clicked on Cut action.
45 // User clicked on Share action.
47 // User clicked on a Smart action.
53 // User clicked on a custom action.
55 // User clicked on Select All action
/frameworks/base/tests/LegacyRestoreTest/
DREADME2 "adb backup" archive of the settings provider package. It was generated on a
4 to the PBKDF2 implementation. The archive's encryption password, entered on-screen,
7 'adb restore' decrypts and applies the restored archive successfully on a device
8 running Android 4.3, but fails to restore correctly on a device running Android 4.4,
13 archive, using the same key, generated on a Nexus 4 running Android 4.4 with a fix
14 to this bug in place. This archive should be successfully restorable on any
/frameworks/base/packages/SystemUI/src/com/android/systemui/demomode/
DDemoModeAvailabilityTracker.kt86 val on = checkIsDemoModeOn() in onChange() constant
89 android.util.Log.d(TAG, "onChange: DEMO_MODE_ON changed: $on") in onChange()
92 if (isInDemoMode == on) { in onChange()
96 isInDemoMode = on in onChange()
97 if (on) { in onChange()
/frameworks/base/services/tests/servicestests/src/com/android/server/vibrator/
DVibratorControllerTest.java194 when(mNativeWrapperMock.on(anyLong(), anyLong())).thenAnswer(args -> args.getArgument(0)); in on_withDuration_turnsVibratorOn()
196 controller.on(100, 10); in on_withDuration_turnsVibratorOn()
199 verify(mNativeWrapperMock).on(eq(100L), eq(10L)); in on_withDuration_turnsVibratorOn()
209 assertEquals(10L, controller.on(prebaked, 11)); in on_withPrebaked_performsEffect()
225 assertEquals(15L, controller.on(primitives, 12)); in on_withComposed_performsEffect()
241 assertEquals(15L, controller.on(primitives, 12)); in on_withComposedPwle_performsEffect()
249 when(mNativeWrapperMock.on(anyLong(), anyLong())).thenAnswer(args -> args.getArgument(0)); in off_turnsOffVibrator()
252 controller.on(100, 1); in off_turnsOffVibrator()
263 when(mNativeWrapperMock.on(anyLong(), anyLong())).thenAnswer(args -> args.getArgument(0)); in registerVibratorStateListener_callbacksAreTriggered()
267 controller.on(10, 1); in registerVibratorStateListener_callbacksAreTriggered()
[all …]
/frameworks/hardware/interfaces/sensorservice/1.0/
DISensorManager.hal11 * distributed under the License is distributed on an "AS IS" BASIS,
37 * @return list the list of available sensors, or empty on failure
38 * @return result OK on success or UNKNOWN_ERROR on failure
46 * value on failure.
47 * @return result OK on success or
54 * Create direct channel based on shared memory
88 * Create direct channel based on hardware buffer
110 * Subsequently, one can enable sensors on the event queue so that sensor
113 * @param callback the callback to call on events. Must not be null.
114 * @return queue the event queue created. null on failure.
DIDirectReportChannel.hal11 * distributed under the License is distributed on an "AS IS" BASIS,
29 * Configure direct report on channel
31 * Configure sensor direct report on a direct channel: set rate to value
39 * @param sensorHandle handle of the sensor to operate on. If it is -1
42 * @param rate rate level value to set on the specified sensor.
44 * @return result OK on success;
/frameworks/base/core/proto/android/app/
Dnotificationmanager.proto11 * distributed under the License is distributed on an "AS IS" BASIS,
65 // (e.g. with notification lights or by turning the screen on) when the
70 // when the screen is on (e.g. by peeking onto the screen).
81 // appearing in the status bar, on devices that support status bars.
83 // Whether badges from notifications intercepted by DND are blocked on
87 // on ambient displays on devices that support ambient display.
91 // on devices that support those views.
/frameworks/proto_logging/stats/enums/view/
Denums.proto11 * distributed under the License is distributed on an "AS IS" BASIS,
29 // The display state is on.
31 // The display is dozing in a low power state; it is still on but is
35 // The display is dozing in a suspended low power state; it is still on
39 // The display is on and optimized for VR mode.
41 // The display is in a suspended full power state; it is still on but the
/frameworks/native/libs/android_runtime_lazy/
DAndroid.bp11 * distributed under the License is distributed on an "AS IS" BASIS,
20 // By depending on this instead of libandroid_runtime,
25 // frameworks/native modules should not depend on frameworks/base.
29 // Some libraries which serve as LL-NDK and NDK as well may depend on this
31 // depending on libandroid_runtime is meaningless. In this case,
32 // they can depend on libandroid_runtime_lazy.
/frameworks/native/cmds/rss_hwm_reset/
Drss_hwm_reset.rc10 # distributed under the License is distributed on an "AS IS" BASIS,
24 on property:sys.rss_hwm_reset.on=1
26 setprop sys.rss_hwm_reset.on 0
/frameworks/av/media/codecs/amrnb/fuzzer/
DREADME.md4 The fuzzer plugin for AMR-NB is designed based on the understanding of the
8 The configuration parameters are not hardcoded, but instead selected based on
26 which is based on `input_format` and `frame_type` selected.
31 malformed, etc) and doesnt `exit()` on any input and thereby increasing the
50 To run on device
55 To run on host
/frameworks/av/media/codecs/amrwb/dec/fuzzer/
DREADME.md4 The fuzzer plugin for AMR-WB is designed based on the understanding of the
8 The configuration parameters are not hardcoded, but instead selected based on
25 which is based on `mode` and `quality` selected.
30 malformed, etc) and doesnt `exit()` on any input and thereby increasing the
49 To run on device
54 To run on host
/frameworks/base/tests/SystemMemoryTest/
DREADME.txt6 - those parts of the test that run on device.
9 - those parts of the test that run on host.
18 This installs and runs the test on device. You can see the metrics in the
/frameworks/layoutlib/
DREADME3 to its rendering on devices.
5 None of the com.android.* or android.* classes in layoutlib run on devices.
7 For more details on layoutlib building process see create/README.txt
/frameworks/wilhelm/tools/hashgen/
DREADME.txt18 Build and test the usage of the new IID on host by "make run_test"
19 *and* on the target by tests/sandbox/engine.c. The host test
23 hashgen is known to work on Linux with GNU gperf 3.0.4 and GNU sed
24 version 4.2.2. There are reports of problems on Mac OS X.
/frameworks/base/services/core/java/com/android/server/vibrator/
DVibratorController.java229 public long on(long milliseconds, long vibrationId) { in on() method in VibratorController
231 long duration = mNativeWrapper.on(milliseconds, vibrationId); in on()
249 public long on(PrebakedSegment prebaked, long vibrationId) { in on() method in VibratorController
270 public long on(PrimitiveSegment[] primitives, long vibrationId) { in on() method in VibratorController
292 public long on(RampSegment[] primitives, long vibrationId) { in on() method in VibratorController
388 private static native long on(long nativePtr, long milliseconds, long vibrationId); in on() method in VibratorController.NativeWrapper
431 public long on(long milliseconds, long vibrationId) { in on() method in VibratorController.NativeWrapper
432 return on(mNativePtr, milliseconds, vibrationId); in on()
/frameworks/hardware/interfaces/bufferhub/1.0/
DIBufferHub.hal11 * distributed under the License is distributed on an "AS IS" BASIS,
27 * @return status The result of this operation. NO_ERROR on success,
28 * error code on failure.
43 * @return status The result of this operation. NO_ERROR on success,
44 * error code on failure.

12345678910>>...82