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.java1293 private final Operation[] mOperations = new Operation[MAX_RECENT_OPERATIONS];
1300 Operation operation = mOperations[index];
1302 operation = new Operation();
1338 final Operation operation = getOperationLocked(cookie);
1366 final Operation operation = getOperationLocked(cookie);
1377 final Operation operation = getOperationLocked(cookie);
1391 private Operation getOperationLocked(int cookie) {
1393 final Operation operation = mOperations[index];
1399 final Operation operatio
1439 private static final class Operation { class in class:SQLiteConnection
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java398 class Operation { class in class:BackupManagerService
402 Operation(int initialState, BackupRestoreTask callbackObj) { method in class:BackupManagerService.Operation
407 final SparseArray<Operation> mCurrentOperations = new SparseArray<Operation>();
1734 mCurrentOperations.put(token, new Operation(OP_PENDING, callback));
1746 Operation op = null;
1776 Operation op = null;
5681 Operation op = null;

Completed in 169 milliseconds