/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pManager.java | 199 private static final int BASE = Protocol.BASE_WIFI_P2P_MANAGER; field in 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 + 9; [all …]
|
D | WifiP2pService.java | 119 private static final int BASE = Protocol.BASE_WIFI_P2P_SERVICE; field in 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 AIRPLANE_MODE_CHANGED = BASE + 6; 137 private static final int EMERGENCY_CALLBACK_MODE = BASE + 7; 138 private static final int WPS_PBC = BASE + 8; 139 private static final int WPS_PIN = BASE + 9;
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | DataConnectionAc.java | 41 public static final int BASE = Protocol.BASE_DATA_CONNECTION_AC; field in 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 + 8; [all …]
|
D | DataConnectionTracker.java | 99 protected static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER; field in DataConnectionTracker 100 protected static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0; 101 protected static final int EVENT_RADIO_AVAILABLE = BASE + 1; 102 protected static final int EVENT_RECORDS_LOADED = BASE + 2; 103 protected static final int EVENT_TRY_SETUP_DATA = BASE + 3; 104 protected static final int EVENT_DATA_STATE_CHANGED = BASE + 4; 105 protected static final int EVENT_POLL_PDP = BASE + 5; 106 protected static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6; 107 protected static final int EVENT_VOICE_CALL_STARTED = BASE + 7; 108 protected static final int EVENT_VOICE_CALL_ENDED = BASE + 8; [all …]
|
D | DataConnection.java | 197 protected static final int BASE = Protocol.BASE_DATA_CONNECTION; field in DataConnection 198 protected static final int EVENT_CONNECT = BASE + 0; 199 protected static final int EVENT_SETUP_DATA_CONNECTION_DONE = BASE + 1; 200 protected static final int EVENT_GET_LAST_FAIL_DONE = BASE + 2; 201 protected static final int EVENT_DEACTIVATE_DONE = BASE + 3; 202 protected static final int EVENT_DISCONNECT = BASE + 4; 203 protected static final int EVENT_RIL_CONNECTED = BASE + 5;
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | WifiMonitor.java | 202 private static final int BASE = Protocol.BASE_WIFI_MONITOR; field in 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 + 9; [all …]
|
D | WifiStateMachine.java | 194 static final int BASE = Protocol.BASE_WIFI; field in WifiStateMachine 196 static final int CMD_LOAD_DRIVER = BASE + 1; 198 static final int CMD_UNLOAD_DRIVER = BASE + 2; 200 static final int CMD_LOAD_DRIVER_SUCCESS = BASE + 3; 202 static final int CMD_LOAD_DRIVER_FAILURE = BASE + 4; 204 static final int CMD_UNLOAD_DRIVER_SUCCESS = BASE + 5; 206 static final int CMD_UNLOAD_DRIVER_FAILURE = BASE + 6; 209 static final int CMD_START_SUPPLICANT = BASE + 11; 211 static final int CMD_STOP_SUPPLICANT = BASE + 12; 213 static final int CMD_START_DRIVER = BASE + 13; [all …]
|
D | WifiWatchdogStateMachine.java | 107 private static final int BASE = Protocol.BASE_WIFI_WATCHDOG; field in WifiWatchdogStateMachine 112 private static final int EVENT_WATCHDOG_TOGGLED = BASE + 1; 118 private static final int EVENT_NETWORK_STATE_CHANGE = BASE + 2; 123 private static final int EVENT_RSSI_CHANGE = BASE + 3; 124 private static final int EVENT_SCAN_RESULTS_AVAILABLE = BASE + 4; 125 private static final int EVENT_WIFI_RADIO_STATE_CHANGE = BASE + 5; 126 private static final int EVENT_WATCHDOG_SETTINGS_CHANGE = BASE + 6; 128 private static final int MESSAGE_HANDLE_WALLED_GARDEN = BASE + 100; 129 private static final int MESSAGE_HANDLE_BAD_AP = BASE + 101; 133 private static final int MESSAGE_SINGLE_DNS_CHECK = BASE + 102; [all …]
|
/frameworks/base/services/java/com/android/server/am/ |
D | DeviceMonitor.java | 78 private static final File BASE = new File("/data/anr/"); field in DeviceMonitor 80 if (!BASE.isDirectory() && !BASE.mkdirs()) { 81 throw new AssertionError("Couldn't create " + BASE + "."); 97 File[] files = BASE.listFiles(); in purge() 114 new File(BASE, String.valueOf(System.currentTimeMillis()))); in dump()
|
/frameworks/base/core/java/android/net/ |
D | DhcpStateMachine.java | 83 private static final int BASE = Protocol.BASE_DHCP; field in 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;
|
D | DnsPinger.java | 76 private static final int BASE = Protocol.BASE_DNS_PINGER; field in 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/ |
D | AsyncChannel.java | 93 private static final int BASE = Protocol.BASE_SYSTEM_ASYNC_CHANNEL; field in 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/libs/ui/ |
D | GraphicBuffer.cpp | 40 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()), in GraphicBuffer() 53 : BASE(), mOwner(ownData), mBufferMapper(GraphicBufferMapper::get()), in GraphicBuffer() 68 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone), in GraphicBuffer() 81 : BASE(), mOwner(keepOwnership ? ownHandle : ownNone), in GraphicBuffer()
|
D | FramebufferNativeWindow.cpp | 55 NativeBuffer(int w, int h, int f, int u) : BASE() { in NativeBuffer() 80 : BASE(), fbDev(0), grDev(0), mUpdateOnDemand(false) in FramebufferNativeWindow()
|
/frameworks/base/include/ui/egl/ |
D | android_natives.h | 71 typedef EGLNativeBase<NATIVE_TYPE, TYPE, REF> BASE; typedef
|
/frameworks/base/core/java/android/os/ |
D | Build.java | 139 public static final int BASE = 1; field in Build.VERSION_CODES
|
/frameworks/base/docs/html/guide/appendix/ |
D | api-levels.jd | 154 <td>{@link android.os.Build.VERSION_CODES#BASE}</td>
|
/frameworks/base/api/ |
D | current.txt | 14372 field public static final int BASE = 1; // 0x1
|
D | 14.txt | 14372 field public static final int BASE = 1; // 0x1
|