/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ScanDetailCache.java | 175 public WifiConfiguration.Visibility getVisibilityByRssi(long age) { in getVisibilityByRssi() argument 200 + " age = " + age); in getVisibilityByRssi() 202 if ((now_elapsed_ms - (result.timestamp / 1000)) > age) continue; in getVisibilityByRssi() 205 if ((now_ms - result.seen) > age) continue; in getVisibilityByRssi() 232 public WifiConfiguration.Visibility getVisibilityByPasspointMatch(long age) { in getVisibilityByPasspointMatch() argument 245 if ((now_ms - result.seen) > age) continue; in getVisibilityByPasspointMatch() 287 public WifiConfiguration.Visibility getVisibility(long age) { in getVisibility() argument 289 return getVisibilityByPasspointMatch(age); in getVisibility() 291 return getVisibilityByRssi(age); in getVisibility()
|
D | WifiLastResortWatchdog.java | 136 availableNetworkFailureCount.age = -1; in updateAvailableNetworks() 146 if (entry.getValue().age < MAX_BSSID_AGE - 1) { in updateAvailableNetworks() 147 entry.getValue().age++; in updateAvailableNetworks() 496 public int age = 0; field in WifiLastResortWatchdog.AvailableNetworkFailureCount 537 + ", Age: " + age; in toString()
|
D | WifiConfigManager.java | 2392 public HashSet<Integer> makeChannelList(WifiConfiguration config, int age) { in makeChannelList() argument 2407 dbg.append("makeChannelList age=" + Integer.toString(age) in makeChannelList() 2428 boolean test = (now_ms - result.seen) < age; in makeChannelList() 2432 if (((now_ms - result.seen) < age)) { in makeChannelList() 2459 if (((now_ms - result.seen) < age)) { in makeChannelList()
|
/frameworks/base/docs/html/distribute/googleplay/families/ |
D | start.jd | 65 <li>Choose your target age groups from: Ages 5 & Under, Ages 6 to 8, Ages 9 67 audiences). You can choose up to two adjacent age groups only if your app 68 targets more than one age group. Apps with an ESRB 10+ rating can only choose an 69 age target of 9-12 or General Audience. <!--Apps that are found to be inappropriate 70 for the age groups selected will -->
|
D | about.jd | 73 section includes uniquely merchandised content, new categories, and age-based 116 badge, which reflects the target age you select for your apps and serves as a 135 audiences under the age of thirteen will not be accepted into the program. To 192 provide high quality, age-appropriate content.
|
D | faq.jd | 91 How do I decide what age group to select? 96 age groups, your content must be appropriate for children in the age ranges. You may 113 How many age groups can I select? 117 You can select up to two adjacent age groups only if your app is appropriate for 118 multiple age groups. 240 child-focused, i.e. that target the following age groups: Ages 5 & Under,
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
D | IconCache.java | 112 private long age(long now) { in age() method in IconCache.QueryEntry 364 long age = queryEntry.age(now); in tickle() local 365 if (age > RequeryTimeHigh) { in tickle() 378 } else if (age > RequeryTimeLow) { in tickle()
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | ScanResult.java | 159 long age = seen - previousSeen; in averageRssi() local 161 if (previousSeen > 0 && age > 0 && age < maxAge/2) { in averageRssi() 163 double alpha = 0.5 - (double) age / (double) maxAge; in averageRssi()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | WifiLastResortWatchdogTest.java | 140 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[0]).age, 0); in testAvailableNetworkBuffering_ageCullingWorks() 141 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[1]).age, 0); in testAvailableNetworkBuffering_ageCullingWorks() 142 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[2]).age, in testAvailableNetworkBuffering_ageCullingWorks() 144 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[3]).age, in testAvailableNetworkBuffering_ageCullingWorks() 208 mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[j]).age, 0); in testAvailableNetworkBuffering_addNewNetworksOverTime() 241 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[0]).age, 0); in testAvailableNetworkBuffering_multipleNetworksSomeEphemeral() 242 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[1]).age, 0); in testAvailableNetworkBuffering_multipleNetworksSomeEphemeral() 243 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[2]).age, in testAvailableNetworkBuffering_multipleNetworksSomeEphemeral() 245 assertEquals(mLastResortWatchdog.getRecentAvailableNetworks().get(mBssids[3]).age, in testAvailableNetworkBuffering_multipleNetworksSomeEphemeral()
|
/frameworks/base/core/tests/coretests/src/android/os/ |
D | FileUtilsTest.java | 304 private void touch(String name, long age) throws Exception { in touch() argument 307 file.setLastModified(System.currentTimeMillis() - age); in touch()
|
/frameworks/base/docs/html/training/sign-in/ |
D | index.jd | 39 age range, language, and public profile information.<br>
|
/frameworks/native/libs/input/ |
D | VelocityTracker.cpp | 578 nsecs_t age = newestMovement.eventTime - movement.eventTime; in getEstimator() local 579 if (age > HORIZON) { in getEstimator() 587 time[m] = -age * 0.000000001f; in getEstimator()
|
/frameworks/base/docs/html/distribute/users/ |
D | house-ads.jd | 46 <li>Remember that ads form part of your app and must match its age rating.</li>
|
/frameworks/base/docs/html/guide/topics/ui/accessibility/ |
D | index.jd | 45 devices in different ways. These include users who have visual, physical or age-related limitations
|
D | apps.jd | 52 <p>Applications built for Android are more accessible to users with visual, physical or age-related
|
/frameworks/base/core/java/android/os/ |
D | FileUtils.java | 393 final long age = System.currentTimeMillis() - file.lastModified(); in deleteOlderFiles() local 394 if (age > minAge) { in deleteOlderFiles()
|
/frameworks/base/docs/html/topic/libraries/data-binding/ |
D | index.jd | 858 android:visibility="@{age &lt; 13 ? View.GONE : View.VISIBLE}" 930 referencing <code>user.age</code>, where age is an <code>int</code>, then it 1215 public final ObservableInt age = new ObservableInt(); 1224 int age = user.age.get(); 1241 user.put("age", 17); 1258 android:text='@{String.valueOf(1 + (Integer)user["age"])}'
|
/frameworks/base/docs/html/distribute/monetize/ |
D | ads.jd | 201 <li>Remember that ads form part of your app and must match its age rating.
|
/frameworks/base/docs/html/distribute/googleplay/ |
D | about.jd | 64 about your app: hero image or video, age rating, total downloads, summary
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageInstallerService.java | 349 final long age = System.currentTimeMillis() - session.createdMillis; in readSessionsLocked() local 352 if (age >= MAX_AGE_MILLIS) { in readSessionsLocked()
|
/frameworks/base/docs/html/google/backup/ |
D | terms.jd | 43 age to form a binding contract with Google.</p>
|
D | signup.jd | 43 2.3 You may not use the Service and may not accept the Terms if you are not of legal age to form a …
|
/frameworks/base/docs/html/distribute/essentials/quality/ |
D | billions.jd | 485 href="https://medium.com/@chrisbanes/appcompat-v23-2-age-of-the-vectors-91cbafa87c88">
|
/frameworks/base/docs/html-intl/intl/pt-br/guide/topics/ui/notifiers/ |
D | notifications.jd | 170 age como uma sugestão à IU do dispositivo sobre como a notificação deve ser exibida.
|
/frameworks/base/docs/html-intl/intl/pt-br/guide/topics/providers/ |
D | content-provider-basics.jd | 227 {@link android.content.ContentProvider} também age como uma camada de abstração entre
|