Searched defs:Operation (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/obex/javax/obex/
H A DOperation.java42 * The <code>Operation</code> interface provides ways to manipulate a single
71 * Operation op = conn.put(head);
87 * Operation op = conn.get(head);
102 * <H3>Client PUT Operation Flow</H3> For PUT operations, a call to
110 * <H3>Client GET Operation Flow</H3> For GET operation, a call to
118 public interface Operation { interface
134 * @return the headers received during this <code>Operation</code>
135 * @throws IOException if this <code>Operation</code> has been closed
143 * @throws IOException if this <code>Operation</code> has been closed or the
/frameworks/base/tools/preload/
H A DOperation.java24 class Operation implements Serializable { class in inherits:Serializable
54 final List<Operation> subops = new ArrayList<Operation>();
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, method in class:Operation
85 for (Operation child : subops) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1286 private final Operation[] mOperations = new Operation[MAX_RECENT_OPERATIONS];
1293 Operation operation = mOperations[index];
1295 operation = new Operation();
1331 final Operation operation = getOperationLocked(cookie);
1359 final Operation operation = getOperationLocked(cookie);
1370 final Operation operation = getOperationLocked(cookie);
1384 private Operation getOperationLocked(int cookie) {
1386 final Operation operation = mOperations[index];
1392 final Operation operatio
1432 private static final class Operation { class in class:SQLiteConnection
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java394 class Operation { class in class:BackupManagerService
398 Operation(int initialState, BackupRestoreTask callbackObj) { method in class:BackupManagerService.Operation
403 final SparseArray<Operation> mCurrentOperations = new SparseArray<Operation>();
1727 mCurrentOperations.put(token, new Operation(OP_PENDING, callback));
1739 Operation op = null;
1769 Operation op = null;
5534 Operation op = null;

Completed in 87 milliseconds