Searched refs:BASE (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDctConstants.java59 public static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER; field in class:DctConstants
60 public static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
61 public static final int EVENT_RADIO_AVAILABLE = BASE + 1;
62 public static final int EVENT_RECORDS_LOADED = BASE + 2;
63 public static final int EVENT_TRY_SETUP_DATA = BASE + 3;
64 public static final int EVENT_DATA_STATE_CHANGED = BASE + 4;
65 public static final int EVENT_POLL_PDP = BASE + 5;
66 public static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
67 public static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
68 public static final int EVENT_VOICE_CALL_ENDED = BASE
[all...]
/frameworks/native/include/ui/
H A DTVecHelpers.h61 * operators on a vector of type BASE<T>.
63 * BASE only needs to implement operator[] and size().
64 * By simply inheriting from TVec{Add|Product}Operators<BASE, T> BASE will automatically
68 template <template<typename T> class BASE, typename T>
75 BASE<T>& operator += (const BASE<OTHER>& v) {
76 BASE<T>& rhs = static_cast<BASE<T>&>(*this);
77 for (size_t i=0 ; i<BASE<
[all...]
H A DTMatHelpers.h179 * operators on a vector of type BASE<T>.
181 * BASE only needs to implement operator[] and size().
182 * By simply inheriting from TMatProductOperators<BASE, T> BASE will automatically
186 template <template<typename T> class BASE, typename T>
190 BASE<T>& operator *= (T v) {
191 BASE<T>& lhs(static_cast< BASE<T>& >(*this));
199 BASE<T>& operator /= (T v) {
200 BASE<
[all...]
H A DANativeObjectBase.h70 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF> BASE; typedef in class:android::ANativeObjectBase
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcAsyncChannel.java39 public static final int BASE = Protocol.BASE_DATA_CONNECTION_AC; field in class:DcAsyncChannel
41 public static final int REQ_IS_INACTIVE = BASE + 0;
42 public static final int RSP_IS_INACTIVE = BASE + 1;
44 public static final int REQ_GET_CID = BASE + 2;
45 public static final int RSP_GET_CID = BASE + 3;
47 public static final int REQ_GET_APNSETTING = BASE + 4;
48 public static final int RSP_GET_APNSETTING = BASE + 5;
50 public static final int REQ_GET_LINK_PROPERTIES = BASE + 6;
51 public static final int RSP_GET_LINK_PROPERTIES = BASE + 7;
53 public static final int REQ_SET_LINK_PROPERTIES_HTTP_PROXY = BASE
[all...]
H A DDataConnection.java178 static final int BASE = Protocol.BASE_DATA_CONNECTION; field in class:DataConnection
179 static final int EVENT_CONNECT = BASE + 0;
180 static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1;
181 static final int EVENT_GET_LAST_FAIL_DONE = BASE + 2;
182 static final int EVENT_DEACTIVATE_DONE = BASE + 3;
183 static final int EVENT_DISCONNECT = BASE + 4;
184 static final int EVENT_RIL_CONNECTED = BASE + 5;
185 static final int EVENT_DISCONNECT_ALL = BASE + 6;
186 static final int EVENT_DATA_STATE_CHANGED = BASE + 7;
187 static final int EVENT_TEAR_DOWN_NOW = BASE
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java287 private static final int BASE = Protocol.BASE_WIFI_P2P_MANAGER; field in class:WifiP2pManager
290 public static final int DISCOVER_PEERS = BASE + 1;
292 public static final int DISCOVER_PEERS_FAILED = BASE + 2;
294 public static final int DISCOVER_PEERS_SUCCEEDED = BASE + 3;
297 public static final int STOP_DISCOVERY = BASE + 4;
299 public static final int STOP_DISCOVERY_FAILED = BASE + 5;
301 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 6;
304 public static final int CONNECT = BASE + 7;
306 public static final int CONNECT_FAILED = BASE + 8;
308 public static final int CONNECT_SUCCEEDED = BASE
[all...]
H A DWifiP2pService.java136 private static final int BASE = Protocol.BASE_WIFI_P2P_SERVICE; field in class:WifiP2pService
139 public static final int GROUP_CREATING_TIMED_OUT = BASE + 1;
142 private static final int PEER_CONNECTION_USER_ACCEPT = BASE + 2;
144 private static final int PEER_CONNECTION_USER_REJECT = BASE + 3;
146 private static final int DROP_WIFI_USER_ACCEPT = BASE + 4;
148 private static final int DROP_WIFI_USER_REJECT = BASE + 5;
150 public static final int DISABLE_P2P_TIMED_OUT = BASE + 6;
154 public static final int P2P_CONNECTION_CHANGED = BASE + 11;
167 public static final int DISCONNECT_WIFI_REQUEST = BASE + 12;
168 public static final int DISCONNECT_WIFI_RESPONSE = BASE
[all...]
/frameworks/base/core/java/android/net/nsd/
H A DNsdManager.java161 private static final int BASE = Protocol.BASE_NSD_MANAGER; field in class:NsdManager
164 public static final int DISCOVER_SERVICES = BASE + 1;
166 public static final int DISCOVER_SERVICES_STARTED = BASE + 2;
168 public static final int DISCOVER_SERVICES_FAILED = BASE + 3;
170 public static final int SERVICE_FOUND = BASE + 4;
172 public static final int SERVICE_LOST = BASE + 5;
175 public static final int STOP_DISCOVERY = BASE + 6;
177 public static final int STOP_DISCOVERY_FAILED = BASE + 7;
179 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 8;
182 public static final int REGISTER_SERVICE = BASE
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiMonitor.java287 private static final int BASE = Protocol.BASE_WIFI_MONITOR; field in class:WifiMonitor
290 public static final int SUP_CONNECTION_EVENT = BASE + 1;
292 public static final int SUP_DISCONNECTION_EVENT = BASE + 2;
294 public static final int NETWORK_CONNECTION_EVENT = BASE + 3;
296 public static final int NETWORK_DISCONNECTION_EVENT = BASE + 4;
298 public static final int SCAN_RESULTS_EVENT = BASE + 5;
300 public static final int SUPPLICANT_STATE_CHANGE_EVENT = BASE + 6;
302 public static final int AUTHENTICATION_FAILURE_EVENT = BASE + 7;
304 public static final int WPS_SUCCESS_EVENT = BASE + 8;
306 public static final int WPS_FAIL_EVENT = BASE
[all...]
H A DWifiManager.java1289 private static final int BASE = Protocol.BASE_WIFI_MANAGER; field in class:WifiManager
1293 public static final int CONNECT_NETWORK = BASE + 1;
1295 public static final int CONNECT_NETWORK_FAILED = BASE + 2;
1297 public static final int CONNECT_NETWORK_SUCCEEDED = BASE + 3;
1300 public static final int FORGET_NETWORK = BASE + 4;
1302 public static final int FORGET_NETWORK_FAILED = BASE + 5;
1304 public static final int FORGET_NETWORK_SUCCEEDED = BASE + 6;
1307 public static final int SAVE_NETWORK = BASE + 7;
1309 public static final int SAVE_NETWORK_FAILED = BASE + 8;
1311 public static final int SAVE_NETWORK_SUCCEEDED = BASE
[all...]
H A DWifiStateMachine.java291 static final int BASE = Protocol.BASE_WIFI; field in class:WifiStateMachine
293 static final int CMD_START_SUPPLICANT = BASE + 11;
295 static final int CMD_STOP_SUPPLICANT = BASE + 12;
297 static final int CMD_START_DRIVER = BASE + 13;
299 static final int CMD_STOP_DRIVER = BASE + 14;
301 static final int CMD_STATIC_IP_SUCCESS = BASE + 15;
303 static final int CMD_STATIC_IP_FAILURE = BASE + 16;
305 static final int CMD_STOP_SUPPLICANT_FAILED = BASE + 17;
307 static final int CMD_DELAYED_STOP_DRIVER = BASE + 18;
309 static final int CMD_DRIVER_START_TIMED_OUT = BASE
[all...]
H A DWifiWatchdogStateMachine.java80 private static final int BASE = Protocol.BASE_WIFI_WATCHDOG; field in class:WifiWatchdogStateMachine
83 private static final int EVENT_WATCHDOG_TOGGLED = BASE + 1;
84 private static final int EVENT_NETWORK_STATE_CHANGE = BASE + 2;
85 private static final int EVENT_RSSI_CHANGE = BASE + 3;
86 private static final int EVENT_SUPPLICANT_STATE_CHANGE = BASE + 4;
87 private static final int EVENT_WIFI_RADIO_STATE_CHANGE = BASE + 5;
88 private static final int EVENT_WATCHDOG_SETTINGS_CHANGE = BASE + 6;
89 private static final int EVENT_BSSID_CHANGE = BASE + 7;
90 private static final int EVENT_SCREEN_ON = BASE + 8;
91 private static final int EVENT_SCREEN_OFF = BASE
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.cpp52 template<typename BASE, int TYPEID>
53 Value MakePtrValue(const BASE* values, int count) {
56 result.value = malloc(sizeof(BASE) * count);
57 memcpy(result.value, values, sizeof(BASE) * count);
76 template<typename BASE, int TYPEID>
77 int SetPtrValue(Value* value, const BASE* new_values, int count) {
80 value->value = malloc(sizeof(BASE) * count);
84 memcpy(value->value, new_values, sizeof(BASE) * count);
/frameworks/base/core/java/android/net/
H A DDhcpStateMachine.java83 private static final int BASE = Protocol.BASE_DHCP; field in class:DhcpStateMachine
86 public static final int CMD_START_DHCP = BASE + 1;
87 public static final int CMD_STOP_DHCP = BASE + 2;
88 public static final int CMD_RENEW_DHCP = BASE + 3;
91 public static final int CMD_PRE_DHCP_ACTION = BASE + 4;
94 public static final int CMD_POST_DHCP_ACTION = BASE + 5;
96 public static final int CMD_ON_QUIT = BASE + 6;
100 public static final int CMD_PRE_DHCP_ACTION_COMPLETE = BASE + 7;
H A DDnsPinger.java76 private static final int BASE = Protocol.BASE_DNS_PINGER; field in class:DnsPinger
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;
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java93 private static final int BASE = Protocol.BASE_SYSTEM_ASYNC_CHANNEL; field in class:AsyncChannel
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]
[all...]
/frameworks/base/services/java/com/android/server/wifi/
H A DWifiController.java104 private static final int BASE = Protocol.BASE_WIFI_CONTROLLER; field in class:WifiController
106 static final int CMD_EMERGENCY_MODE_CHANGED = BASE + 1;
107 static final int CMD_SCREEN_ON = BASE + 2;
108 static final int CMD_SCREEN_OFF = BASE + 3;
109 static final int CMD_BATTERY_CHANGED = BASE + 4;
110 static final int CMD_DEVICE_IDLE = BASE + 5;
111 static final int CMD_LOCKS_CHANGED = BASE + 6;
112 static final int CMD_SCAN_ALWAYS_MODE_CHANGED = BASE + 7;
113 static final int CMD_WIFI_TOGGLED = BASE + 8;
114 static final int CMD_AIRPLANE_TOGGLED = BASE
[all...]
/frameworks/base/core/java/android/os/
H A DBuild.java139 public static final int BASE = 1; field in class:Build.VERSION_CODES
/frameworks/native/libs/ui/
H A DGraphicBuffer.cpp38 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
50 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
65 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
78 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
H A DFramebufferNativeWindow.cpp51 NativeBuffer(int w, int h, int f, int u) : BASE() {
76 : BASE(), fbDev(0), grDev(0), mUpdateOnDemand(false)
/frameworks/base/services/java/com/android/server/
H A DNsdService.java86 private static final int BASE = Protocol.BASE_NSD_MANAGER; field in class:NsdService
87 private static final int CMD_TO_STRING_COUNT = NsdManager.RESOLVE_SERVICE - BASE + 1;
91 sCmdToString[NsdManager.DISCOVER_SERVICES - BASE] = "DISCOVER";
92 sCmdToString[NsdManager.STOP_DISCOVERY - BASE] = "STOP-DISCOVER";
93 sCmdToString[NsdManager.REGISTER_SERVICE - BASE] = "REGISTER";
94 sCmdToString[NsdManager.UNREGISTER_SERVICE - BASE] = "UNREGISTER";
95 sCmdToString[NsdManager.RESOLVE_SERVICE - BASE] = "RESOLVE";
99 cmd -= BASE;

Completed in 409 milliseconds