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

1 2 3 4 5 6 7

  /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;
  /packages/apps/TV/src/com/android/tv/util/
Clock.java 21 * An interface through which system clocks can be read. The {@link #SYSTEM} implementation
27 * See {@link System#currentTimeMillis()}.
49 Clock SYSTEM = new Clock() {
52 return System.currentTimeMillis();
  /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"),
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationVisibility.java 27 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);
  /external/libexif/contrib/watcom/
Makefile 1 # This makefile is made for OpenWatcom/NT and runs on my system.
22 # Uncomment line for desired system
23 #SYSTEM=DOS
24 #SYSTEM=OS2
25 SYSTEM=NT
53 !ifeq SYSTEM DOS
55 !else ifeq SYSTEM OS2
57 !else ifeq SYSTEM NT
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 27 * #SYSTEM} implementation, which uses the host machine's local file system. Alternate
31 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source}
41 /** The host machine's local file system. */
42 FileSystem SYSTEM = new FileSystem() {
123 /** Returns true if {@code file} exists on the file system. */
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
SettingsPreparer.java 38 SYSTEM;
49 description = "If the setting is 'secure', 'global', or 'system'")
  /frameworks/base/services/core/java/com/android/server/firewall/
SenderFilter.java 36 private static final String VAL_SYSTEM = "system";
37 private static final String VAL_SYSTEM_OR_SIGNATURE = "system|signature";
67 return SYSTEM;
88 private static final Filter SYSTEM = new Filter() {
109 // This checks whether the caller is either the system process, or has the same user id
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/
XMLFormatter.java 37 private static final String SYSTEM = "report.dtd";
62 final XMLElement root = new XMLDocument("report", PUBID, 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.
  /external/libchrome/dbus/
bus.h 144 // services like GNOME applications. SYSTEM is used to communicate with
145 // system-wide services like NetworkManager. CUSTOM_ADDRESS is used to
149 SYSTEM = DBUS_BUS_SYSTEM,
  /frameworks/base/core/java/android/os/
UserHandle.java 69 * @deprecated Consider using either {@link UserHandle#SYSTEM} constant or
74 /** @hide A user id constant to indicate the "system" user of the device */
77 /** @hide A user serial constant to indicate the "system" user of the device */
80 /** @hide A user handle to indicate the "system" user of the device */
81 public static final UserHandle SYSTEM = new UserHandle(USER_SYSTEM);
161 return userId == USER_SYSTEM ? SYSTEM : new UserHandle(userId);
317 * @return true if this UserHandle refers to the system user; false otherwise.
322 return this.equals(SYSTEM);
  /frameworks/base/services/core/java/com/android/server/connectivity/
PermissionMonitor.java 59 private static final boolean SYSTEM = true;
71 // Keys are App IDs. Values are true for SYSTEM permission and false for NETWORK permission.
101 // Intended to be called only once at startup, after the system is ready. Installs a broadcast
135 // permissions, don't downgrade (i.e., if it's already SYSTEM, leave it as is).
187 List<Integer> system = new ArrayList<>(); local
189 List<Integer> list = app.getValue() ? system : network;
197 mNetd.setPermission("SYSTEM", toIntArray(system));
200 mNetd.clearPermission(toIntArray(system));
244 // permissions, don't downgrade (i.e., if it's already SYSTEM, leave it as is)
    [all...]
  /system/core/base/include/android-base/
logging.h 50 SYSTEM,
  /system/core/base/
logging.cpp 213 static_assert(arraysize(kLogIdToAndroidLogId) == SYSTEM + 1,
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 312 SYSTEM("sys"),
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 312 SYSTEM("sys"),
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 312 SYSTEM("sys"),
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioSystemLegacy.h 23 #include <system/audio.h>
24 #include <system/audio_policy.h>
74 SYSTEM = 1,
229 // audio device enumeration from system/audio.h instead.
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 70 private static final char[] SYSTEM = { 'S', 'Y', 'S', 'T', 'E', 'M' };
231 System.arraycopy(
299 System.arraycopy(arr, 0, bigger, 0, arr.length);
612 * SYSTEM "quoted system name"
613 * PUBLIC "quoted public id" "quoted system name"
615 * If the system name is not required, this also supports lone public IDs of
627 read(SYSTEM);
645 return true; // no system name!
895 * <!ENTITY foo SYSTEM "http://host/file"
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0/
shared-25.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-alpha6/
shared-25.2.0-alpha6.jar 

Completed in 930 milliseconds

1 2 3 4 5 6 7