HomeSort by relevance Sort by last modified time
    Searched refs:Allocated (Results 1 - 25 of 39) sorted by null

1 2

  /tools/tradefederation/core/remote/src/com/android/tradefed/device/
DeviceAllocationEventHandler.java 31 * <li>Unknown -> FORCE_ALLOCATE_REQUEST -> Allocated</li>
44 return DeviceAllocationState.Allocated;
66 * <li>Checking_Availability -> FORCE_ALLOCATE_REQUEST -> Allocated</li>
80 return DeviceAllocationState.Allocated;
104 * <li>Available -> ALLOCATE_REQUEST -> Allocated</li>
105 * <li>Available -> FORCE_ALLOCATE_REQUEST -> Allocated</li>
116 return DeviceAllocationState.Allocated;
129 * Handles events in {@link DeviceAllocationState#Allocated} state.
133 * <li>Allocated -> FREE_UNAVAILABLE -> Unavailable</li>
134 * <li>Allocated -> FREE_AVAILABLE -> Available</li
    [all...]
DeviceAllocationState.java 26 /** device is available to be allocated to a test */
30 /** device is currently allocated to a test */
31 Allocated(new AllocatedHandler()),
  /external/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
DeviceManagerTest.java 268 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
285 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
303 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
322 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
330 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
341 // ensure device can be allocated again
357 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
370 * they can be allocated.
388 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true));
400 .andReturn(new DeviceEventResponse(DeviceAllocationState.Allocated, true))
    [all...]
DeviceUtilStatsMonitorTest.java 61 * Test case where device has been available but never allocated
76 * Test case where device has been allocated but never available
80 DeviceAllocationState.Allocated));
95 // first return allocated, then return samples with device missing
97 DeviceAllocationState.Allocated));
103 // only 1 sample - allocated
119 // first return allocated, then return samples with device missing
121 DeviceAllocationState.Allocated));
127 // only 1 sample - allocated
DeviceUtilStatsMonitorLoadTest.java 68 DeviceDescriptor device = createDeviceDesc("serial" + i, DeviceAllocationState.Allocated);
MockDeviceManager.java 205 DeviceAllocationState.Allocated, DeviceAllocationState.Available);
261 DeviceAllocationState.Allocated);
305 Assert.assertEquals("allocated device was not returned to queue", mTotalDevices,
  /device/linaro/bootloader/edk2/ArmPkg/Library/UncachedMemoryAllocationLib/
UncachedMemoryAllocationLib.c 55 BOOLEAN Allocated;
60 // Track the size of the non-allocated buffer in the linked-list
65 * of the previously allocated buffer.
72 * @param Allocation Address of the newly allocated buffer
104 if ((Node->Allocated == FALSE) && (Node->MemoryType == MemoryType)) {
109 Node->Allocated = TRUE;
130 NewNode->Allocated = TRUE;
182 NewNode->Allocated = TRUE;
220 Node->Allocated = FALSE;
225 // If the size of the non-allocated reaches the threshold we raise a warning.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuBootOrderLib/
QemuBootOrderLib.c 149 @param[out] Result The array, allocated by the caller, to receive
153 @param[in out] NumResults On input, the number of elements allocated for
246 UINTN Allocated;
284 if (BootOrder->Produced == BootOrder->Allocated) {
288 ASSERT (BootOrder->Allocated > 0);
289 AllocatedNew = BootOrder->Allocated * 2;
291 BootOrder->Allocated * sizeof (*BootOrder->Data),
298 BootOrder->Allocated = AllocatedNew;
393 Parse an OpenFirmware device path node into the caller-allocated OFW_NODE
566 fragment, allocated by the caller. If the
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/device/
DeviceUtilStatsMonitor.java 47 * include stub device data only if any stub device of same type is allocated at least
110 // store samples of device util, where 0 = avail, 1 = allocated
120 if (DeviceAllocationState.Allocated.equals(state)) {
240 * available or allocated state.
249 if (DeviceAllocationState.Allocated.equals(newState)) {
ManagedDeviceList.java 45 * A {@link IMatcher} for finding a {@link IManagedTestDevice} that can be allocated.
46 * Will change the device state to ALLOCATED upon finding a successful match.
59 return r.stateChanged && r.allocationState == DeviceAllocationState.Allocated;
157 * @return the {@link IManagedTestDevice} that was successfully allocated, null otherwise
162 // and that can be transitioned to allocated state.
DeviceManager.java 103 description = "the maximum number of emulators that can be allocated at one time")
106 description = "the maximum number of no device runs that can be allocated at one time.")
109 description = "the maximum number of tcp devices that can be allocated at one time")
390 * Add placeholder objects for the max number of emulators that can be allocated
472 if (r.stateChanged && r.allocationState == DeviceAllocationState.Allocated) {
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsnamed.c 489 if (v ->Allocated == 0)
492 size = v ->Allocated * 2;
502 v ->Allocated = size;
517 while (v -> Allocated < n) {
551 while (NewNC ->Allocated < v ->Allocated) {
576 if (NamedColorList ->nColors + 1 > NamedColorList ->Allocated) {
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciBus.h 148 BOOLEAN Allocated;
PciDeviceSupport.c 579 if (!Temp->Allocated) {
633 if (!Temp->Registered && Temp->Allocated) {
PciEnumeratorSupport.c 1172 PciIoDevice->Allocated = FALSE;
1174 PciIoDevice->Allocated = TRUE;
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 54 unsigned int Allocated:1;
198 if (reg->Allocated) {
211 s->Input[input].Allocated = 1;
225 s->Temporary[i].Allocated = 1;
r3xx_vertprog.c 547 unsigned int Allocated:1;
633 if (ta[orig].Allocated && inst == ta[orig].LastRead)
642 if (!ta[orig].Allocated) {
647 ta[orig].Allocated = 1;
  /external/swiftshader/third_party/LLVM/lib/Support/
StringRef.cpp 95 llvm::OwningArrayPtr<unsigned> Allocated;
99 Allocated.reset(previous);
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 18 public UInt32 _blockSize; // Size of Allocated memory block
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciBus.h 215 BOOLEAN Allocated;
PciResourceSupport.c 665 // then we indicate this device has been allocated naturally.
668 PciDev->Allocated = TRUE;
1213 This function is used to program the resource allocated
    [all...]
PciDeviceSupport.c 86 All direct or indirect allocated resource for this node will be freed.
624 @retval EFI_NOT_READY Device is not allocated.
666 if (!PciIoDevice->Allocated) {
737 if (!PciIoDevice->Registered && PciIoDevice->Allocated) {
793 @retval EFI_NOT_READY Device is not allocated.
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
PciBus.h 207 BOOLEAN Allocated;
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
RemoteManagerFuncTest.java 213 DeviceAllocationState.Allocated,
239 assertEquals(DeviceAllocationState.Allocated, returnedDevices.get(1).getState());
328 * An integration test for case where device was not allocated before {@link ExecCommandOp}

Completed in 1066 milliseconds

1 2