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

/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pManager.java199 private static final int BASE = Protocol.BASE_WIFI_P2P_MANAGER; field in class:WifiP2pManager
202 public static final int ENABLE_P2P = BASE + 1;
204 public static final int ENABLE_P2P_FAILED = BASE + 2;
206 public static final int ENABLE_P2P_SUCCEEDED = BASE + 3;
209 public static final int DISABLE_P2P = BASE + 4;
211 public static final int DISABLE_P2P_FAILED = BASE + 5;
213 public static final int DISABLE_P2P_SUCCEEDED = BASE + 6;
216 public static final int DISCOVER_PEERS = BASE + 7;
218 public static final int DISCOVER_PEERS_FAILED = BASE + 8;
220 public static final int DISCOVER_PEERS_SUCCEEDED = BASE
[all...]
H A DWifiP2pService.java119 private static final int BASE = Protocol.BASE_WIFI_P2P_SERVICE; field in class:WifiP2pService
122 public static final int P2P_ENABLE_PENDING = BASE + 1;
124 public static final int WIFI_ENABLE_PROCEED = BASE + 2;
127 public static final int GROUP_NEGOTIATION_TIMED_OUT = BASE + 3;
130 private static final int WIFI_DISABLE_USER_ACCEPT = BASE + 4;
132 private static final int WIFI_DISABLE_USER_REJECT = BASE + 5;
135 private static final int GROUP_NEGOTIATION_USER_ACCEPT = BASE + 6;
137 private static final int GROUP_NEGOTIATION_USER_REJECT = BASE + 7;
140 private static final int GROUP_INVITATION_USER_ACCEPT = BASE + 8;
142 private static final int GROUP_INVITATION_USER_REJECT = BASE
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnectionAc.java41 public static final int BASE = Protocol.BASE_DATA_CONNECTION_AC; field in class:DataConnectionAc
43 public static final int REQ_IS_INACTIVE = BASE + 0;
44 public static final int RSP_IS_INACTIVE = BASE + 1;
46 public static final int REQ_GET_CID = BASE + 2;
47 public static final int RSP_GET_CID = BASE + 3;
49 public static final int REQ_GET_APNSETTING = BASE + 4;
50 public static final int RSP_GET_APNSETTING = BASE + 5;
52 public static final int REQ_GET_LINK_PROPERTIES = BASE + 6;
53 public static final int RSP_GET_LINK_PROPERTIES = BASE + 7;
55 public static final int REQ_SET_LINK_PROPERTIES_HTTP_PROXY = BASE
[all...]
H A DDataConnectionTracker.java102 protected static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER; field in class:DataConnectionTracker
103 protected static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
104 protected static final int EVENT_RADIO_AVAILABLE = BASE + 1;
105 protected static final int EVENT_RECORDS_LOADED = BASE + 2;
106 protected static final int EVENT_TRY_SETUP_DATA = BASE + 3;
107 protected static final int EVENT_DATA_STATE_CHANGED = BASE + 4;
108 protected static final int EVENT_POLL_PDP = BASE + 5;
109 protected static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
110 protected static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
111 protected static final int EVENT_VOICE_CALL_ENDED = BASE
[all...]
H A DDataConnection.java200 protected static final int BASE = Protocol.BASE_DATA_CONNECTION; field in class:DataConnection
201 protected static final int EVENT_CONNECT = BASE + 0;
202 protected static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1;
203 protected static final int EVENT_GET_LAST_FAIL_DONE = BASE + 2;
204 protected static final int EVENT_DEACTIVATE_DONE = BASE + 3;
205 protected static final int EVENT_DISCONNECT = BASE + 4;
206 protected static final int EVENT_RIL_CONNECTED = BASE + 5;
207 protected static final int EVENT_DISCONNECT_ALL = BASE + 6;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiMonitor.java202 private static final int BASE = Protocol.BASE_WIFI_MONITOR; field in class:WifiMonitor
205 public static final int SUP_CONNECTION_EVENT = BASE + 1;
207 public static final int SUP_DISCONNECTION_EVENT = BASE + 2;
209 public static final int NETWORK_CONNECTION_EVENT = BASE + 3;
211 public static final int NETWORK_DISCONNECTION_EVENT = BASE + 4;
213 public static final int SCAN_RESULTS_EVENT = BASE + 5;
215 public static final int SUPPLICANT_STATE_CHANGE_EVENT = BASE + 6;
217 public static final int AUTHENTICATION_FAILURE_EVENT = BASE + 7;
219 public static final int WPS_OVERLAP_EVENT = BASE + 8;
221 public static final int DRIVER_HUNG_EVENT = BASE
[all...]
H A DWifiStateMachine.java205 static final int BASE = Protocol.BASE_WIFI; field in class:WifiStateMachine
207 static final int CMD_LOAD_DRIVER = BASE + 1;
209 static final int CMD_UNLOAD_DRIVER = BASE + 2;
211 static final int CMD_LOAD_DRIVER_SUCCESS = BASE + 3;
213 static final int CMD_LOAD_DRIVER_FAILURE = BASE + 4;
215 static final int CMD_UNLOAD_DRIVER_SUCCESS = BASE + 5;
217 static final int CMD_UNLOAD_DRIVER_FAILURE = BASE + 6;
220 static final int CMD_START_SUPPLICANT = BASE + 11;
222 static final int CMD_STOP_SUPPLICANT = BASE + 12;
224 static final int CMD_START_DRIVER = BASE
[all...]
H A DWifiWatchdogStateMachine.java109 private static final int BASE = Protocol.BASE_WIFI_WATCHDOG; field in class:WifiWatchdogStateMachine
114 private static final int EVENT_WATCHDOG_TOGGLED = BASE + 1;
120 private static final int EVENT_NETWORK_STATE_CHANGE = BASE + 2;
125 private static final int EVENT_RSSI_CHANGE = BASE + 3;
126 private static final int EVENT_SCAN_RESULTS_AVAILABLE = BASE + 4;
127 private static final int EVENT_WIFI_RADIO_STATE_CHANGE = BASE + 5;
128 private static final int EVENT_WATCHDOG_SETTINGS_CHANGE = BASE + 6;
130 private static final int MESSAGE_HANDLE_WALLED_GARDEN = BASE + 100;
131 private static final int MESSAGE_HANDLE_BAD_AP = BASE + 101;
135 private static final int MESSAGE_SINGLE_DNS_CHECK = BASE
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java78 private static final File BASE = new File("/data/anr/"); field in class:DeviceMonitor
80 if (!BASE.isDirectory() && !BASE.mkdirs()) {
81 throw new AssertionError("Couldn't create " + BASE + ".");
97 File[] files = BASE.listFiles();
114 new File(BASE, String.valueOf(System.currentTimeMillis())));
/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;
98 public static final int CMD_PRE_DHCP_ACTION_COMPLETE = BASE + 6;
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;
/frameworks/base/core/java/android/os/
H A DBuild.java139 public static final int BASE = 1; field in class:Build.VERSION_CODES
/frameworks/base/include/ui/egl/
H A Dandroid_natives.h71 typedef EGLNativeBase<NATIVE_TYPE, TYPE, REF> BASE; typedef in class:android::EGLNativeBase
/frameworks/base/libs/ui/
H A DGraphicBuffer.cpp40 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
53 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()),
68 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
81 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone),
H A DFramebufferNativeWindow.cpp55 NativeBuffer(int w, int h, int f, int u) : BASE() {
80 : BASE(), fbDev(0), grDev(0), mUpdateOnDemand(false)

Completed in 440 milliseconds