HomeSort by relevance Sort by last modified time
    Searched defs:Lease (Results 1 - 6 of 6) sorted by null

  /external/grpc-grpc/src/csharp/Grpc.Core/Internal/
IObjectPool.cs 32 T Lease();
DefaultObjectPool.cs 51 /// On average, the shared pool will only be accessed approx. once for every <c>threadLocalCapacity / 2</c> rent or lease
77 public T Lease()
113 // next time we try to lease we will just create those
  /device/generic/goldfish/dhcp/server/
lease.h 24 // A lease consists of both the interface index and the MAC address. This
34 struct Lease {
35 Lease(unsigned int interfaceIndex, const uint8_t* macAddress) {
50 template<> struct hash<Lease> {
51 size_t operator()(const Lease& lease) const {
53 hash_combine(seed, lease.InterfaceIndex);
55 hash_combine(seed, *reinterpret_cast<const uint32_t*>(lease.MacAddress));
58 *reinterpret_cast<const uint16_t*>(lease.MacAddress + 4));
64 inline bool operator==(const Lease& left, const Lease& right)
    [all...]
  /external/autotest/venv/lucifer/
leasing.py 8 obtain a job lease. Ongoing ownership of the lease is established using
9 an exclusive fcntl lock on the lease file.
11 If a lease file is older than a few seconds and is not locked, then its
34 """Return a context manager owning a lease file.
36 The process that obtains the lease will maintain an exclusive,
48 """Yield Lease instances from jobdir.
50 @param jobdir: job lease file directory
55 yield Lease(entry)
58 class Lease(object)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Option.h 82 UINT32 Lease; // DHCP4_TAG_LEASE
Dhcp4Impl.h 98 IP4_ADDR ClientAddr; // lease IP or configured client address
106 UINT32 Lease;
112 UDP_IO *LeaseIoPort; // Udp child with lease IP

Completed in 276 milliseconds