Searched refs:ephemeral (Results 1 - 15 of 15) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DConfigurationMapTest.java140 final boolean wasEphemeral = config.ephemeral;
141 config.ephemeral = false;
143 config.ephemeral = true;
145 config.ephemeral = wasEphemeral;
156 final boolean wasEphemeral = config.ephemeral;
157 config.ephemeral = false;
159 config.ephemeral = true;
161 config.ephemeral = wasEphemeral;
H A DWifiConfigManagerTest.java679 * Verifies that handleUserSwitch() removes ephemeral network configurations, disables network
704 config.ephemeral = true;
727 // Verify that the ephemeral network configuration was removed.
759 * Verifies that handleUserSwitch() behaves correctly when the user switch removes an ephemeral
H A DWifiQualifiedNetworkSelectorTest.java1289 * Case #26 ephemeral network can not be qualified network
1293 * if current connected network is ephemeral network, then it is not qualified. We should make
1296 * expected result: return test1 (since test2 is ephemeral)
1309 savedConfigs[1].ephemeral = true;
1625 * Case #33 Choose an ephemeral network with a good score because no saved networks
1714 //Setup NetworkScoreCache for detecting ephemeral networks ("test4")
1793 //Setup NetworkScoreCache for detecting ephemeral networks ("test4")
1840 * Case #36 Ignore an ephemeral network if it was previously deleted.
1880 // The second scan result is for an ephemeral network which was previously deleted
2048 * Case #40 Choose the ephemeral confi
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java683 public boolean ephemeral; field in class:WifiConfiguration
1345 ephemeral = false;
1446 if (this.ephemeral) sbuf.append(" ephemeral");
1450 || this.ephemeral || this.meteredHint || this.useExternalScores) {
1873 ephemeral = source.ephemeral;
1954 dest.writeInt(ephemeral ? 1 : 0);
2025 config.ephemeral = in.readInt() != 0;
H A DWifiInfo.java448 public void setEphemeral(boolean ephemeral) { argument
449 mEphemeral = ephemeral;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConfigManager.java246 * Framework keeps a list of ephemeral SSIDs that where deleted by user,
434 * ephemeral networks).
445 if (config.ephemeral) {
476 * ephemeral networks).
485 * ephemeral networks), filled with real preSharedKeys.
542 * ephemeral networks) that were recently seen.
555 if (config.ephemeral) {
638 if (config != null && !config.ephemeral
769 logd("WifiConfigManager: removed from ephemeral blacklist: " + config.SSID);
848 * Disable an ephemeral SSI
[all...]
H A DWifiNetworkHistory.java167 + disableTime + " ephemeral=" + config.ephemeral
216 + Boolean.toString(config.ephemeral) + NL);
429 config.ephemeral = Boolean.parseBoolean(value);
H A DConfigurationMap.java167 if (ssid.equals(config.SSID) && config.ephemeral) {
H A DWifiQualifiedNetworkSelector.java226 //if current connected network is an ephemeral network,we will consider
228 if (currentNetwork.ephemeral) {
229 localLog("Current is ephemeral. Start reselect");
719 if (network.ephemeral) {
725 // Evaluate the potentially ephemeral network as a possible candidate if untrusted
733 // scanDetail is for available ephemeral network
741 // calculate the score of each scanresult whose associated network is not ephemeral. Due
901 // Mark this config as ephemeral so it isn't persisted.
902 unTrustedNetworkCandidate.ephemeral = true;
910 localLog(String.format("new ephemeral candidat
[all...]
H A DWifiStateMachine.java696 /* Disable an ephemeral network */
2501 if (lastSavedConfigurationAttempt.ephemeral) {
2502 sb.append(" ephemeral");
2525 if (lastForgetConfigurationAttempt.ephemeral) {
2526 sb.append(" ephemeral");
5281 if (config.ephemeral) {
5282 // Remove ephemeral WifiConfigurations from file
5931 // (either AUTO_JOIN_DELETED or ephemeral; see WifiConfigManager#
5936 config.ephemeral = false;
6291 if (config.ephemeral) {
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java454 boolean ephemeral = false;
457 ephemeral = true;
500 // The ephemeral case will either fit and return EPHEMERAL, or will not fit
503 return (ephemeral)
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java1061 public void createUserKey(int userId, int serialNumber, boolean ephemeral) { argument
1063 mMountService.createUserKey(userId, serialNumber, ephemeral);
H A DIMountService.java1203 public void createUserKey(int userId, int serialNumber, boolean ephemeral) argument
1211 _data.writeInt(ephemeral ? 1 : 0);
2076 boolean ephemeral = data.readInt() != 0;
2077 createUserKey(userId, serialNumber, ephemeral);
2474 public void createUserKey(int userId, int serialNumber, boolean ephemeral) argument
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java2810 public void createUserKey(int userId, int serialNumber, boolean ephemeral) { argument
2816 ephemeral ? 1 : 0);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java736 /** Component that knows whether or not an ephemeral application exists */
738 /** The service connection to the ephemeral resolver */
741 /** Component used to install ephemeral applications */
1690 // Send installed broadcasts if the install/update is not ephemeral
2133 mEphemeralInstallDir = new File(dataDir, "app-ephemeral");
2675 // both the installer and resolver must be present to enable ephemeral
2894 "There must be at most one ephemeral installer; found " + matches);
4828 // ephemeral apps have been disabled across the board
4832 // system isn't up yet; can't read settings, so, assume no ephemeral apps
4871 // Deny ephemeral app
[all...]

Completed in 6807 milliseconds