HomeSort by relevance Sort by last modified time
    Searched full:occupied (Results 1 - 25 of 234) sorted by null

1 2 3 4 5 6 7 8 910

  /external/tpm2/
_TPM_Hash_Start.c 42 // failed indicating that all slots are occupied, then the first handle we
43 // are going to check (TRANSIENT_FIRST) will be occupied. It will be freed
51 // If the first call to find a slot fails but none of the slots is occupied
Object.c 28 //Set the slot to not occupied
29 s_objects[i].occupied = FALSE;
53 s_objects[i].occupied = FALSE;
80 // slot is occupied, then indicate that there is already is a loaded
85 return s_objects[slotIndex].occupied;
126 pAssert(s_objects[handle - TRANSIENT_FIRST].occupied == TRUE);
127 // In this implementation, the handle is determined by the slot occupied by the
259 if(!s_objects[i].occupied) // If found a free slot
261 // Mark the slot as occupied
262 s_objects[i].occupied = TRUE
    [all...]
Session.c 72 // are cleared and marked as not occupied
74 s_sessions[i].occupied = FALSE; // session slot is not occupied
255 // be occupied by the created session
327 if(s_sessions[slotIndex].occupied == FALSE)
341 // Can now indicate that the session array entry is occupied.
343 s_sessions[slotIndex].occupied = TRUE;
471 s_sessions[slotIndex].occupied = FALSE;
508 if(s_sessions[slotIndex].occupied == FALSE) break;
529 // Set session slot as occupied
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/model/
GridSizeMigrationTask.java 335 boolean[][] occupied = new boolean[mTrgX][mTrgY];
337 markCells(occupied, item, true);
340 OptimalPlacementSolution placement = new OptimalPlacementSolution(occupied,
375 boolean[][] occupied = new boolean[mTrgX][mTrgY];
393 markCells(occupied, item, true);
397 OptimalPlacementSolution placement = new OptimalPlacementSolution(occupied, removedItems);
405 private void markCells(boolean[][] occupied, DbEntry item, boolean val) {
408 occupied[i][j] = val;
413 private boolean isVacant(boolean[][] occupied, int x, int y, int w, int h) {
419 if (occupied[i + x][j + y])
    [all...]
  /packages/apps/Launcher2/
print_db.py 74 def render_cell_info(out, cell, occupied):
78 elif cell == occupied:
194 occupied = "occupied" variable
206 screen[j][k] = occupied
215 render_cell_info(out, cell, occupied)
  /device/google/dragon/crash_collector/
coredump_writer.h 49 // Virtual address occupied by a mapped file.
67 // Extracts a set of address ranges occupied by mapped files from NOTE segment.
  /external/autotest/client/cros/cellular/mbim_compliance/sequences/
sequence.py 44 Check if interfaces are occupied by kernel driver. If kernel driver is
  /external/e2fsprogs/lib/quota/
quotaio_v2.h 49 u_int64_t dqb_curspace; /* current space occupied (in bytes) */
  /external/libweave/third_party/libuweave/src/
macaroon_encoding.h 23 * Gets the number of bytes that is occupied by the first data item in the give
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]
  /packages/apps/Launcher3/
print_db.py 107 def render_cell_info(out, cell, occupied):
111 elif cell == occupied:
257 occupied = "occupied" variable
269 screen[j][k] = occupied
278 render_cell_info(out, cell, occupied)
  /frameworks/base/tools/aapt2/util/
BigBuffer.h 46 * Size of memory that is currently occupied. The actual
73 * Number of occupied bytes in all the allocated blocks.
  /cts/tests/tests/location/src/android/location/cts/
TestUtils.java 28 // Since late 2014, if the main thread has been occupied for long enough, Android will
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java     [all...]
  /external/llvm/include/llvm/CodeGen/
DFAPacketizer.h 101 // canReserveResources - Check if the resources occupied by a MCInstrDesc
105 // reserveResources - Reserve the resources occupied by a MCInstrDesc and
109 // canReserveResources - Check if the resources occupied by a machine
113 // reserveResources - Reserve the resources occupied by a machine
  /external/llvm/lib/CodeGen/
DFAPacketizer.cpp 112 // canReserveResources - Check if the resources occupied by a MCInstrDesc
122 // reserveResources - Reserve the resources occupied by a MCInstrDesc and
134 // canReserveResources - Check if the resources occupied by a machine
141 // reserveResources - Reserve the resources occupied by a machine
  /external/v8/test/mjsunit/regress/
splice-missing-wb.js 46 // memory location previously occupied by a[200] a[201].
  /frameworks/compile/mclinker/include/mcld/LD/
RelocationFactory.h 46 /// occupied memory space but all contents set to zero.
  /frameworks/rs/
rsGrallocConsumer.h 59 // Boolean array to check if a position has been occupied or not.
  /frameworks/support/v7/gridlayout/res/values/
attrs.xml 117 occupied by this view.
122 boundaries delimiting the group of cells occupied by this view.
132 occupied by this view.
137 boundaries delimiting the group of cells occupied by this view.
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
OrientationHelper.java 131 * Returns the space occupied by this View in the current orientation including decorations and
135 * @return Total space occupied by this view
141 * Returns the space occupied by this View in the perpendicular orientation including
145 * @return Total space occupied by this view in the perpendicular orientation to current one
  /libcore/ojluni/src/main/java/java/lang/
InterruptedException.java 29 * Thrown when a thread is waiting, sleeping, or otherwise occupied,
  /prebuilts/gdb/darwin-x86/include/python2.7/
fileobject.h 20 char* f_bufend; /* Points after last occupied position */
  /prebuilts/gdb/linux-x86/include/python2.7/
fileobject.h 20 char* f_bufend; /* Points after last occupied position */
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
fileobject.h 20 char* f_bufend; /* Points after last occupied position */

Completed in 689 milliseconds

1 2 3 4 5 6 7 8 910