HomeSort by relevance Sort by last modified time
    Searched refs:SYSTEM (Results 1 - 25 of 544) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/automotive/vehicle/2.0/
types.hal 109 SYSTEM = 0x10000000,
148 | VehiclePropertyGroup:SYSTEM
160 | VehiclePropertyGroup:SYSTEM
172 | VehiclePropertyGroup:SYSTEM
185 | VehiclePropertyGroup:SYSTEM
198 | VehiclePropertyGroup:SYSTEM
211 | VehiclePropertyGroup:SYSTEM
225 | VehiclePropertyGroup:SYSTEM
238 | VehiclePropertyGroup:SYSTEM
251 | VehiclePropertyGroup:SYSTEM
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
incpath.h 34 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
AnnotationVisibility.java 39 public static final int SYSTEM = 2;
41 private static String[] NAMES = new String[] {"build", "runtime", "system"};
58 if (visibility.equals("system")) {
59 return SYSTEM;
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 27 SYSTEM("system"),
  /hardware/interfaces/memtrack/1.0/
types.hal 36 * SYSTEM/DEDICATED
40 * If none are set, record is assumed to count system + dedicated memory.
53 SYSTEM = 1 << 6,
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/fonts/
font.conf 2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/fonts/
font.conf 2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Dns.java 25 * {@linkplain #SYSTEM system DNS service}, which is the default. Some applications may provide
33 * A DNS that uses {@link InetAddress#getAllByName} to ask the underlying operating system to
36 Dns SYSTEM = new Dns() {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
SingleInetAddressDns.java 31 List<InetAddress> addresses = Dns.SYSTEM.lookup(hostname);
DoubleInetAddressDns.java 30 List<InetAddress> addresses = Dns.SYSTEM.lookup(hostname);
  /frameworks/native/cmds/lshal/libprocpartition/include/procpartition/
procpartition.h 30 SYSTEM,
  /packages/apps/TV/common/src/com/android/tv/common/util/
Clock.java 21 * An interface through which system clocks can be read. The {@link #SYSTEM} implementation must be
28 * @see System#currentTimeMillis().
56 Clock SYSTEM =
60 return System.currentTimeMillis();
  /tools/loganalysis/src/com/android/loganalysis/item/
TopItem.java 32 public static final String SYSTEM = "SYSTEM";
47 USER, NICE, SYSTEM, IDLE, IOW, IRQ, SIRQ, TOTAL, TEXT));
89 * Get the number of system ticks.
92 return (Integer) getAttribute(SYSTEM);
96 * Set the number of system ticks.
98 public void setSystem(int system) {
99 setAttribute(SYSTEM, system);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLDocument.java 30 private static final String SYSTEM = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";
48 super(ROOT, PUBID, SYSTEM, encoding, false, writer);
64 super(ROOT, PUBID, SYSTEM, encoding, false, output);
  /system/core/storaged/
storaged.cpp 52 * The system user is the initial user that is implicitly created on first boot
53 * and hosts most of the system services. Keep this in sync with
99 LOG_TO(SYSTEM, WARNING) << "health: failed to find IHealth service";
106 LOG_TO(SYSTEM, WARNING)
111 LOG_TO(SYSTEM, WARNING) << "health: invalid battery status";
116 LOG_TO(SYSTEM, WARNING) << "health: get charge status transaction error "
128 LOG_TO(SYSTEM, ERROR) << "health service died, exiting";
132 LOG_TO(SYSTEM, ERROR) << "unknown service died";
192 LOG_TO(SYSTEM, WARNING) << "CRC mismatch in " << proto_file;
228 PLOG_TO(SYSTEM, ERROR) << "Faied to alloc aligned buffer (size:
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppsQueryHelperTests.java 40 List<String> apps = mAppsQueryHelper.queryApps(0, true, UserHandle.SYSTEM);
43 apps = mAppsQueryHelper.queryApps(0, false, UserHandle.SYSTEM);
49 true, UserHandle.SYSTEM);
53 false, UserHandle.SYSTEM);
59 AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM, true, UserHandle.SYSTEM);
63 AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM, false, UserHandle.SYSTEM);
71 true, UserHandle.SYSTEM);
77 false, UserHandle.SYSTEM);
82 // Test query system IMEs
94 // Test query only system apps required for system use
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
SnoozeHelperTest.java 72 NotificationRecord r = getNotificationRecord("pkg", 1, "one", UserHandle.SYSTEM);
85 NotificationRecord r = getNotificationRecord("pkg", 1, "one", UserHandle.SYSTEM);
95 NotificationRecord r = getNotificationRecord("pkg", 1, "one", UserHandle.SYSTEM);
96 NotificationRecord r2 = getNotificationRecord("pkg", 2, "two", UserHandle.SYSTEM);
115 NotificationRecord r = getNotificationRecord("pkg", 1, "one", UserHandle.SYSTEM);
116 NotificationRecord r2 = getNotificationRecord("pkg", 2, "two", UserHandle.SYSTEM);
141 NotificationRecord r = getNotificationRecord("pkg", 1, "one", UserHandle.SYSTEM);
142 NotificationRecord r2 = getNotificationRecord("pkg", 2, "two", UserHandle.SYSTEM);
143 NotificationRecord r3 = getNotificationRecord("pkg2", 3, "three", UserHandle.SYSTEM);
167 NotificationRecord r = getNotificationRecord("pkg", 1, "one", UserHandle.SYSTEM);
    [all...]
  /frameworks/native/cmds/lshal/libprocpartition/
procpartition.cpp 26 case Partition::SYSTEM: return os << "system";
57 if (s == "system") {
58 return Partition::SYSTEM;
70 if (path == "/system/bin/app_process64" ||
71 path == "/system/bin/app_process32") {
84 return Partition::SYSTEM;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOCase.java 41 * The constant for case sensitive regardless of operating system.
46 * The constant for case insensitive regardless of operating system.
51 * The constant for case sensitivity determined by the current operating system.
57 public static final IOCase SYSTEM = new IOCase("System", !FilenameUtils.isSystemWindows());
83 if (IOCase.SYSTEM.name.equals(name)){
84 return IOCase.SYSTEM;
103 * This ensures that the correct flag is set for SYSTEM.
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationUtils.java 20 import static com.android.dx.rop.annotation.AnnotationVisibility.SYSTEM;
94 Annotation result = new Annotation(ANNOTATION_DEFAULT_TYPE, SYSTEM);
108 Annotation result = new Annotation(ENCLOSING_CLASS_TYPE, SYSTEM);
122 Annotation result = new Annotation(ENCLOSING_METHOD_TYPE, SYSTEM);
138 Annotation result = new Annotation(INNER_CLASS_TYPE, SYSTEM);
156 Annotation result = new Annotation(MEMBER_CLASSES_TYPE, SYSTEM);
169 Annotation result = new Annotation(SIGNATURE_TYPE, SYSTEM);
231 Annotation result = new Annotation(SOURCE_DEBUG_EXTENSION_TYPE, SYSTEM);
246 Annotation result = new Annotation(THROWS_TYPE, SYSTEM);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
xml.rb 31 ( 'SYSTEM' WS sys1=VALUE
32 {say("SYSTEM: " + $sys1.text)}
36 {say("SYSTEM: " + $sys2.text)}
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastBackupAgent.java 52 sendBroadcastAsUser(intent, UserHandle.SYSTEM);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
SliceBroadcastRelay.java 52 context.sendBroadcastAsUser(registerBroadcast, UserHandle.SYSTEM);
61 context.sendBroadcastAsUser(registerBroadcast, UserHandle.SYSTEM);
  /frameworks/base/services/core/java/com/android/server/oemlock/
PersistentDataBlockLock.java 30 * The carrier flag is stored as a user restriction on the system user. The user flag is set in the
51 UserManager.DISALLOW_OEM_UNLOCK, !allowed, UserHandle.SYSTEM);
61 .hasUserRestriction(UserManager.DISALLOW_OEM_UNLOCK, UserHandle.SYSTEM);

Completed in 692 milliseconds

1 2 3 4 5 6 7 8 91011>>