HomeSort by relevance Sort by last modified time
    Searched refs:BASE (Results 51 - 75 of 183) sorted by null

1 23 4 5 6 7 8

  /frameworks/base/wifi/java/android/net/wifi/passpoint/
WifiPasspointManager.java 382 private static final int BASE = Protocol.BASE_WIFI_PASSPOINT_MANAGER;
384 public static final int REQUEST_ANQP_INFO = BASE + 1;
385 public static final int REQUEST_ANQP_INFO_FAILED = BASE + 2;
386 public static final int REQUEST_ANQP_INFO_SUCCEEDED = BASE + 3;
387 public static final int REQUEST_OSU_ICON = BASE + 4;
388 public static final int REQUEST_OSU_ICON_FAILED = BASE + 5;
389 public static final int REQUEST_OSU_ICON_SUCCEEDED = BASE + 6;
390 public static final int START_OSU = BASE + 7;
391 public static final int START_OSU_BROWSER = BASE + 8;
392 public static final int START_OSU_FAILED = BASE + 9
    [all...]
  /system/keymaster/
Makefile 25 BASE=../..
31 GTEST=$(BASE)/external/gtest
33 INCLUDES=$(foreach dir,$(SUBS),-I $(BASE)/$(dir)/include) \
34 -I $(BASE)/libnativehelper/include/nativehelper \
35 -I $(GTEST) -Iinclude -I$(BASE)/../boringssl/include
61 LDLIBS=-L$(BASE)/../boringssl/build/crypto -lcrypto -lpthread -lstdc++ -lgcov
256 $(BASE)/system/security/softkeymaster/keymaster_openssl.o \
257 $(BASE)/system/security/keystore/keyblob_utils.o \
  /frameworks/base/wifi/java/android/net/wifi/
WifiManager.java     [all...]
WifiScanner.java 731 private static final int BASE = Protocol.BASE_WIFI_SCANNER;
734 public static final int CMD_SCAN = BASE + 0;
736 public static final int CMD_START_BACKGROUND_SCAN = BASE + 2;
738 public static final int CMD_STOP_BACKGROUND_SCAN = BASE + 3;
740 public static final int CMD_GET_SCAN_RESULTS = BASE + 4;
742 public static final int CMD_SCAN_RESULT = BASE + 5;
744 public static final int CMD_SET_HOTLIST = BASE + 6;
746 public static final int CMD_RESET_HOTLIST = BASE + 7;
748 public static final int CMD_AP_FOUND = BASE + 9;
750 public static final int CMD_AP_LOST = BASE + 10
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiController.java 103 private static final int BASE = Protocol.BASE_WIFI_CONTROLLER;
105 static final int CMD_EMERGENCY_MODE_CHANGED = BASE + 1;
106 static final int CMD_SCREEN_ON = BASE + 2;
107 static final int CMD_SCREEN_OFF = BASE + 3;
108 static final int CMD_BATTERY_CHANGED = BASE + 4;
109 static final int CMD_DEVICE_IDLE = BASE + 5;
110 static final int CMD_LOCKS_CHANGED = BASE + 6;
111 static final int CMD_SCAN_ALWAYS_MODE_CHANGED = BASE + 7;
112 static final int CMD_WIFI_TOGGLED = BASE + 8;
113 static final int CMD_AIRPLANE_TOGGLED = BASE + 9
    [all...]
WifiWatchdogStateMachine.java 81 private static final int BASE = Protocol.BASE_WIFI_WATCHDOG;
84 private static final int EVENT_WATCHDOG_TOGGLED = BASE + 1;
85 private static final int EVENT_NETWORK_STATE_CHANGE = BASE + 2;
86 private static final int EVENT_RSSI_CHANGE = BASE + 3;
87 private static final int EVENT_SUPPLICANT_STATE_CHANGE = BASE + 4;
88 private static final int EVENT_WIFI_RADIO_STATE_CHANGE = BASE + 5;
89 private static final int EVENT_WATCHDOG_SETTINGS_CHANGE = BASE + 6;
90 private static final int EVENT_BSSID_CHANGE = BASE + 7;
91 private static final int EVENT_SCREEN_ON = BASE + 8;
92 private static final int EVENT_SCREEN_OFF = BASE + 9
    [all...]
WifiStateMachine.java 553 /* The base for wifi message types */
554 static final int BASE = Protocol.BASE_WIFI;
556 static final int CMD_START_SUPPLICANT = BASE + 11;
558 static final int CMD_STOP_SUPPLICANT = BASE + 12;
560 static final int CMD_START_DRIVER = BASE + 13;
562 static final int CMD_STOP_DRIVER = BASE + 14;
564 static final int CMD_STATIC_IP_SUCCESS = BASE + 15;
566 static final int CMD_STATIC_IP_FAILURE = BASE + 16;
568 static final int CMD_STOP_SUPPLICANT_FAILED = BASE + 17;
570 static final int CMD_DELAYED_STOP_DRIVER = BASE + 18
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
AsyncChannel.java 93 private static final int BASE = Protocol.BASE_SYSTEM_ASYNC_CHANNEL;
108 public static final int CMD_CHANNEL_HALF_CONNECTED = BASE + 0;
117 public static final int CMD_CHANNEL_FULL_CONNECTION = BASE + 1;
127 public static final int CMD_CHANNEL_FULLY_CONNECTED = BASE + 2;
138 public static final int CMD_CHANNEL_DISCONNECT = BASE + 3;
151 public static final int CMD_CHANNEL_DISCONNECTED = BASE + 4;
153 private static final int CMD_TO_STRING_COUNT = CMD_CHANNEL_DISCONNECTED - BASE + 1;
156 sCmdToString[CMD_CHANNEL_HALF_CONNECTED - BASE] = "CMD_CHANNEL_HALF_CONNECTED";
157 sCmdToString[CMD_CHANNEL_FULL_CONNECTION - BASE] = "CMD_CHANNEL_FULL_CONNECTION";
158 sCmdToString[CMD_CHANNEL_FULLY_CONNECTED - BASE] = "CMD_CHANNEL_FULLY_CONNECTED"
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetworkMonitor.java 110 private static final int BASE = Protocol.BASE_NETWORK_MONITOR;
116 public static final int CMD_NETWORK_CONNECTED = BASE + 1;
123 public static final int EVENT_NETWORK_TESTED = BASE + 2;
135 public static final int CMD_NETWORK_LINGER = BASE + 3;
141 private static final int CMD_LINGER_EXPIRED = BASE + 4;
148 public static final int EVENT_NETWORK_LINGER_COMPLETE = BASE + 5;
154 private static final int CMD_REEVALUATE = BASE + 6;
159 public static final int CMD_NETWORK_DISCONNECTED = BASE + 7;
165 public static final int CMD_FORCE_REEVALUATION = BASE + 8;
174 private static final int CMD_CAPTIVE_PORTAL_APP_FINISHED = BASE + 9
    [all...]
  /development/apps/Development/src/com/android/development/
AppHwPref.java 53 private static final int BASE = 0;
54 private static final int TOUCHSCREEN = BASE + 1;
55 private static final int KEYBOARD_TYPE = BASE + 2;
56 private static final int NAVIGATION = BASE + 3;
57 private static final int GLES_VERSION = BASE + 4;
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialSolver.h 293 #define EIGEN_POLYNOMIAL_SOLVER_BASE_INHERITED_TYPES( BASE ) \
294 typedef typename BASE::Scalar Scalar; \
295 typedef typename BASE::RealScalar RealScalar; \
296 typedef typename BASE::RootType RootType; \
297 typedef typename BASE::RootsType RootsType;
  /frameworks/base/core/java/android/net/
DnsPinger.java 76 private static final int BASE = Protocol.BASE_DNS_PINGER;
83 public static final int DNS_PING_RESULT = BASE;
92 private static final int ACTION_PING_DNS = BASE + 1;
93 private static final int ACTION_LISTEN_FOR_RESPONSE = BASE + 2;
94 private static final int ACTION_CANCEL_ALL_PINGS = BASE + 3;
NetworkFactory.java 53 private static final int BASE = Protocol.BASE_NETWORK_FACTORY;
76 public static final int CMD_REQUEST_NETWORK = BASE;
82 public static final int CMD_CANCEL_REQUEST = BASE + 1;
88 private static final int CMD_SET_SCORE = BASE + 2;
95 private static final int CMD_SET_FILTER = BASE + 3;
215 * If you don't need to see every request, you can leave the base
ConnectivityManager.java     [all...]
  /external/clang/include/clang/AST/
ASTTypeTraits.h 11 // that can be used to store an AST base node at runtime in the same storage in
70 /// \brief Returns \c true if \c this is a base kind of (or same as) \c Other.
112 /// Includes all possible base and derived kinds.
122 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl,
125 #define STMT(DERIVED, BASE) NKI_##DERIVED,
128 #define TYPE(DERIVED, BASE) NKI_##DERIVED##Type,
136 /// \brief Returns \c true if \c Base is a base kind of (or same as) \c
138 /// \param Distance If non-null, used to return the distance between \c Base
140 static bool isBaseOf(NodeKindId Base, NodeKindId Derived, unsigned *Distance)
    [all...]
  /frameworks/native/include/ui/
ANativeObjectBase.h 70 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF> BASE;
81 static inline TYPE* getSelf(android_native_base_t* base) {
82 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
84 static inline TYPE const * getSelf(android_native_base_t const* base) {
85 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
87 static void incRef(android_native_base_t* base) {
88 ANativeObjectBase* self = getSelf(base);
91 static void decRef(android_native_base_t* base) {
92 ANativeObjectBase* self = getSelf(base);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataConnection.java 199 static final int BASE = Protocol.BASE_DATA_CONNECTION;
200 static final int EVENT_CONNECT = BASE + 0;
201 static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1;
202 static final int EVENT_GET_LAST_FAIL_DONE = BASE + 2;
203 static final int EVENT_DEACTIVATE_DONE = BASE + 3;
204 static final int EVENT_DISCONNECT = BASE + 4;
205 static final int EVENT_RIL_CONNECTED = BASE + 5;
206 static final int EVENT_DISCONNECT_ALL = BASE + 6;
207 static final int EVENT_DATA_STATE_CHANGED = BASE + 7;
208 static final int EVENT_TEAR_DOWN_NOW = BASE + 8
    [all...]
DcSwitchStateMachine.java 41 private static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER + 0x00001000;
42 private static final int EVENT_CONNECTED = BASE + 0;
43 private static final int EVENT_DATA_ALLOWED = BASE + 1;
44 private static final int CMD_RETRY_ATTACH = BASE + 2;
45 private static final int EVENT_DATA_DISALLOWED = BASE + 3;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Frame.java 66 * signed number of array dimensions (from -8 to 7). KIND is either BASE,
67 * LOCAL or STACK. BASE is used for types that are not relative to the input
72 * relatively to the top of input frame stack. For BASE types, it is either
79 * contain BASE types of positive or null dimension. In all cases the type
111 * @see #BASE
123 * Mask to get the kind of base types.
128 * Mask to get the value of base types.
135 static final int BASE = 0x1000000;
138 * Base kind of the base reference types. The BASE_VALUE of such types is an
    [all...]
  /external/eigen/bench/btl/data/
mk_new_gnuplot.sh 37 BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat}
  /external/elfutils/src/libebl/
eblauxvinfo.c 50 TYPE (BASE, "p") \
  /external/sfntly/cpp/src/sfntly/
tag.h 59 static const int32_t BASE;
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
AlphabeticIndex.java 129 private static final String BASE = "\uFDD0";
506 if (!current.startsWith(BASE)) {
509 int rest = current.charAt(BASE.length());
513 return current.substring(BASE.length());
547 // the base is 0 mod 8.
570 collatorPrimaryOnly.internalAddContractions(BASE.charAt(0), contractions);
577 assert(s.startsWith(BASE));
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 40 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0;
80 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED;
100 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED;
115 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s;
121 #define DECL(DERIVED, BASE) \
137 #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break;
646 #define DECL(NAME, BASE)
653 #define DECL(NAME, BASE)
665 #define DECL(NAME, BASE)
672 #define DECL(NAME, BASE)
    [all...]
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 45 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
58 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
73 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
86 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),

Completed in 1117 milliseconds

1 23 4 5 6 7 8