Searched refs:Operation (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/tools/preload/
H A DProc.java47 transient final Map<Integer, LinkedList<Operation>> stacks
48 = new HashMap<Integer, LinkedList<Operation>>();
54 final List<Operation> operations = new ArrayList<Operation>();
91 Operation.Type type) {
92 Operation o = new Operation(
96 LinkedList<Operation> stack = stacks.get(threadId);
98 stack = new LinkedList<Operation>();
116 Operation endOperatio
[all...]
H A DLoadedClass.java31 final List<Operation> loads = new ArrayList<Operation>();
34 final List<Operation> initializations = new ArrayList<Operation>();
84 private static int calculateMedian(List<Operation> operations) {
114 private void addProcessNames(List<Operation> ops, Set<String> names) {
115 for (Operation operation : ops) {
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) {
H A DAndroid.mk9 Operation.java \
H A DPrintHtmlDiff.java45 for (Operation op : proc.operations) {
107 for (Operation op : clazz.loads) procNames.add(op.process.name);
108 for (Operation op : clazz.initializations) {
H A DRoot.java65 Operation o = null;
94 Operation.Type.LOAD);
99 Operation.Type.INIT);
H A DPrintCsv.java83 for (Operation op : loadedClass.loads)
85 for (Operation op : loadedClass.initializations)
H A DWritePreloadedClassFile.java100 for (Operation operation : proc.operations) {
137 for (Operation operation : proc.operations) {
/frameworks/base/obex/javax/obex/
H A DServerRequestHandler.java63 * <code>InputStream</code> from the <code>Operation</code> object passed to the
223 public int onPut(Operation operation) {
244 public int onGet(Operation operation) {
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
H A DClientSession.java136 public Operation get(HeaderSet header) throws IOException {
176 Operation op = put(header);
246 public Operation put(HeaderSet header) throws IOException {
402 * @param privateInput the input stream used by the Operation object; null
H A DClientOperation.java43 * This class implements the <code>Operation</code> interface. It will read and
47 public final class ClientOperation implements Operation, BaseStream {
144 throw new IOException("Operation has already ended");
147 mExceptionMessage = "Operation aborted";
321 * @return the headers received during this <code>Operation</code>
322 * @throws IOException if this <code>Operation</code> has been closed
334 * @throws IOException if this <code>Operation</code> has been closed or the
343 throw new IOException("Operation has already exchanged all data");
365 throw new IOException("Operation has completed");
380 throw new IOException("Operation ha
[all...]
H A DServerOperation.java43 * This class implements the Operation interface for server side connections.
55 public final class ServerOperation implements Operation, BaseStream {
521 * @return the headers received during this <code>Operation</code>
522 * @throws IOException if this <code>Operation</code> has been closed
533 * @throws IOException if this <code>Operation</code> has been closed or the
698 throw new IOException("Operation has already ended");
707 * anything on the server side since the operation of the Operation object
716 * on the server side since the operation of the Operation object is not
/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.java428 class Operation { class in class:BackupManagerService
432 Operation(int initialState, BackupRestoreTask callbackObj) { method in class:BackupManagerService.Operation
437 final SparseArray<Operation> mCurrentOperations = new SparseArray<Operation>();
1894 mCurrentOperations.put(token, new Operation(OP_PENDING, callback));
1906 Operation op = null;
1936 Operation op = null;
5904 Operation op = null;
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp3037 AtomicRMWInst::BinOp Operation = GetDecodedRMWOperation(Record[OpNum]);
3038 if (Operation < AtomicRMWInst::FIRST_BINOP ||
3039 Operation > AtomicRMWInst::LAST_BINOP)
3045 I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope);

Completed in 265 milliseconds