Home
last modified time | relevance | path

Searched refs:lifetime (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/base/core/java/android/net/metrics/
DRaEvent.java144 public @NonNull Builder updateRouterLifetime(long lifetime) { in updateRouterLifetime() argument
145 routerLifetime = updateLifetime(routerLifetime, lifetime); in updateRouterLifetime()
149 public @NonNull Builder updatePrefixValidLifetime(long lifetime) { in updatePrefixValidLifetime() argument
150 prefixValidLifetime = updateLifetime(prefixValidLifetime, lifetime); in updatePrefixValidLifetime()
154 public @NonNull Builder updatePrefixPreferredLifetime(long lifetime) { in updatePrefixPreferredLifetime() argument
155 prefixPreferredLifetime = updateLifetime(prefixPreferredLifetime, lifetime); in updatePrefixPreferredLifetime()
159 public @NonNull Builder updateRouteInfoLifetime(long lifetime) { in updateRouteInfoLifetime() argument
160 routeInfoLifetime = updateLifetime(routeInfoLifetime, lifetime); in updateRouteInfoLifetime()
164 public @NonNull Builder updateRdnssLifetime(long lifetime) { in updateRdnssLifetime() argument
165 rdnssLifetime = updateLifetime(rdnssLifetime, lifetime); in updateRdnssLifetime()
[all …]
DApfProgramEvent.java64 public final long lifetime; // Maximum computed lifetime of the program in seconds field in ApfProgramEvent
81 private ApfProgramEvent(long lifetime, long actualLifetime, int filteredRas, int currentRas, in ApfProgramEvent() argument
83 this.lifetime = lifetime; in ApfProgramEvent()
92 this.lifetime = in.readLong(); in ApfProgramEvent()
115 public Builder setLifetime(long lifetime) { in setLifetime() argument
116 mLifetime = lifetime; in setLifetime()
124 public Builder setActualLifetime(long lifetime) { in setActualLifetime() argument
125 mActualLifetime = lifetime; in setActualLifetime()
178 out.writeLong(lifetime); in writeToParcel()
195 String lifetimeString = (lifetime < Long.MAX_VALUE) ? lifetime + "s" : "forever"; in toString()
[all …]
/frameworks/libs/binary_translation/backend/common/
Dreg_alloc.cc92 VRegLifetimePtrList::iterator lifetime; member
96 : lifetime(i), realloc_pos(p) {} in VRegLifetimeSpill()
239 VRegLifetime* spill_lifetime = *spill.lifetime; in SpillAndAssign()
256 lifetimes_.erase(spill.lifetime); in SpillAndAssign()
281 bool TryAssignHardReg(VRegLifetime* lifetime, MachineReg hard_reg);
283 int ConsiderSpillHardReg(MachineReg hard_reg, VRegLifetime* lifetime);
296 int VRegLifetimeAllocator::ConsiderSpillHardReg(MachineReg hard_reg, VRegLifetime* lifetime) { in ConsiderSpillHardReg() argument
297 return allocations_[hard_reg.reg()].ConsiderSpill(lifetime); in ConsiderSpillHardReg()
318 VRegLifetime* lifetime = &*lifetime_it; in AllocateLifetime() local
319 const MachineRegClass* reg_class = lifetime->GetRegClass(); in AllocateLifetime()
[all …]
Dlifetime_analysis.cc26 VRegLifetime*& lifetime = vreg_lifetimes_[i]; in GetVRegLifetime() local
27 if (lifetime) { in GetVRegLifetime()
33 if (lifetime->LastLiveRangeBegin() < bb_tick_) { in GetVRegLifetime()
34 lifetime->StartLiveRange(begin); in GetVRegLifetime()
39 lifetime = &lifetimes_->back(); in GetVRegLifetime()
41 return lifetime; in GetVRegLifetime()
45 VRegLifetime* lifetime = GetVRegLifetime(use.GetVReg(), use.begin()); in AppendUse() local
46 lifetime->AppendUse(use); in AppendUse()
/frameworks/libs/binary_translation/backend/include/berberis/backend/common/
Dlifetime_analysis.h48 auto* lifetime = vreg_lifetimes_[r.GetVRegIndex()]; in SetLiveOut() local
49 CHECK(lifetime); in SetLiveOut()
50 lifetime->set_end(tick_); in SetLiveOut()
/frameworks/proto_logging/stats/atoms/corenetworking/networkstack/
Dipclient_extension_atoms.proto40 // The number of zero lifetime RAs (Router Advertisements).
46 // The lowest router lifetime in seconds, excluding 0.
49 // The lowest valid lifetime of PIO (Prefix Information Option) in seconds, excluding 0.
52 // The lowest route lifetime of RIO (Route Information Option) in seconds, excluding 0.
55 // The lowest lifetime of RDNSS (Recursive DNS Server Option) in seconds, excluding 0.
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DTestableNotificationManagerService.java51 public long lifetime; field in TestableNotificationManagerService.SensitiveLog
183 lastSensitiveLog.lifetime = lifetimeMs; in logSensitiveAdjustmentReceived()
202 public boolean checkLastSensitiveLog(boolean hasPosted, boolean hasSensitive, int lifetime) { in checkLastSensitiveLog() argument
208 && lifetime == lastSensitiveLog.lifetime; in checkLastSensitiveLog()
/frameworks/base/core/java/com/android/server/net/
DNetlinkTracker.java177 public void interfaceDnsServerInfo(String iface, long lifetime, String[] addresses) { in interfaceDnsServerInfo() argument
180 boolean changed = mDnsServerRepository.addServers(lifetime, addresses); in interfaceDnsServerInfo()
310 public synchronized boolean addServers(long lifetime, String[] addresses) { in addServers() argument
315 long expiry = now + 1000 * lifetime; in addServers()
DBaseNetworkObserver.java78 public void interfaceDnsServerInfo(String iface, long lifetime, String[] servers) { in interfaceDnsServerInfo() argument
/frameworks/base/packages/EasterEgg/src/com/android/egg/landroid/
DPhysics.kt43 class Fuse(var lifetime: Float) : Removable { variable in com.android.egg.landroid.Fuse
45 lifetime -= dt in update()
48 return lifetime < 0 in canBeRemoved()
DVisibleUniverse.kt293 if (fuse.lifetime < 0) return in ZoomedDrawScope()
294 val life = 1f - fuse.lifetime / ttl in ZoomedDrawScope()
/frameworks/proto_logging/stats/stats_log_api_gen/
Drust_writer.cpp34 const char* rust_type_name(java_type_t type, bool lifetime) { in rust_type_name() argument
48 if (lifetime) { in rust_type_name()
54 if (lifetime) { in rust_type_name()
454 const bool lifetime = needs_lifetime(atomDecl); in write_rust_struct() local
455 if (lifetime) { in write_rust_struct()
481 if (lifetime) { in write_rust_struct()
487 if (lifetime) { in write_rust_struct()
/frameworks/base/proto/src/
Dipconnectivity.proto326 // Maximum lifetime of the program in seconds.
327 optional int64 lifetime = 1; field
329 // Effective lifetime of the program in seconds from the time the
367 // The total number of received RAs with an effective lifetime of 0 seconds.
368 // Effective lifetime for APF is the minimum of all lifetimes in a RA.
409 // All lifetime values are expressed in seconds. The default value for an
410 // option lifetime that was not present in the RA option list is -1.
411 // The lifetime of an option (e.g., the Prefix Information Option) is the
412 // minimum lifetime of all such options in the packet.
414 // The value of the router lifetime in the RA packet.
[all …]
/frameworks/native/opengl/specs/
DEGL_ANDROID_get_native_client_buffer.txt68 EGL implementations must guarantee that the lifetime of the returned
70 following the lifetime semantics described below in section 2.5.2; the
/frameworks/base/core/java/android/net/
DINetworkManagementEventObserver.aidl104 void interfaceDnsServerInfo(String iface, long lifetime, in String[] servers); in interfaceDnsServerInfo() argument
/frameworks/proto_logging/stats/atoms/rkpd/
Drkpd_extension_atoms.proto97 // and is fixed for the lifetime of the device. The number of unique string
/frameworks/base/services/core/java/com/android/server/connectivity/
DIpConnectivityEventBuilder.java265 apfProgramEvent.lifetime = in.lifetime; in setApfProgramEvent()
/frameworks/av/drm/libmediadrm/protos/
Dmetrics.proto103 // Session ids to lifetime (start and end time) map.
/frameworks/base/services/core/java/com/android/server/rollback/
DREADME.md180 An available rollback is expired if the rollback lifetime has been exceeded or
276 Rollback lifetime refers to the maximum duration of time after the rollback is
278 available for 14 days after the update. This lifetime can be adjusted using the
/frameworks/base/services/core/java/com/android/server/net/
DNetworkManagementService.java558 private void notifyInterfaceDnsServerInfo(String iface, long lifetime, String[] addresses) { in notifyInterfaceDnsServerInfo() argument
559 invokeForAllObservers(o -> o.interfaceDnsServerInfo(iface, lifetime, addresses)); in notifyInterfaceDnsServerInfo()
595 long lifetime, String[] servers) throws RemoteException { in onInterfaceDnsServerInfo() argument
596 mDaemonHandler.post(() -> notifyInterfaceDnsServerInfo(ifName, lifetime, servers)); in onInterfaceDnsServerInfo()
/frameworks/base/core/java/android/app/
Dnotification.aconfig36 description: "Enables moving notification lifetime extension management from SystemUI to "
/frameworks/proto_logging/stats/atoms/corenetworking/connectivity/
Dconnectivity_extension_atoms.proto111 // The lifetime of the keepalive registered today
/frameworks/base/core/java/android/content/pm/
Dflags.aconfig73 description: "Feature flag to enable custom rollback lifetime during install."
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags181 3131 pm_snapshot_rebuild (build_time|1|3),(lifetime|1|3)
/frameworks/av/media/audio/aconfig/
DREADME.md113 to the feature. Given the constraints on the flag lifetime, it is preferable to use a "regular"

12