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

/frameworks/base/services/core/java/com/android/server/location/
H A DGpsStatusListenerHelper.java46 Operation operation;
48 operation = new Operation() {
55 operation = new Operation() {
66 Operation operation = new Operation() {
84 Operation operation = new Operation() {
102 Operation operation = new Operation() {
111 private interface Operation extend interface in class:GpsStatusListenerHelper
[all...]
/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.java166 public Operation get(HeaderSet header) throws IOException {
217 Operation op = put(header);
287 public Operation put(HeaderSet header) throws IOException {
452 * @param privateInput the input stream used by the Operation object; null
H A DClientOperation.java47 * This class implements the <code>Operation</code> interface. It will read and
51 public final class ClientOperation implements Operation, BaseStream {
177 throw new IOException("Operation has already ended");
180 mExceptionMessage = "Operation aborted";
356 * @return the headers received during this <code>Operation</code>
357 * @throws IOException if this <code>Operation</code> has been closed
369 * @throws IOException if this <code>Operation</code> has been closed or the
378 throw new IOException("Operation has already exchanged all data");
400 throw new IOException("Operation has completed");
415 throw new IOException("Operation ha
[all...]
H A DServerOperation.java46 * This class implements the Operation interface for server side connections.
58 public final class ServerOperation implements Operation, BaseStream {
643 * @return the headers received during this <code>Operation</code>
644 * @throws IOException if this <code>Operation</code> has been closed
655 * @throws IOException if this <code>Operation</code> has been closed or the
820 throw new IOException("Operation has already ended");
829 * anything on the server side since the operation of the Operation object
838 * on the server side since the operation of the Operation object is not
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMnsObexServer.java28 import javax.obex.Operation;
78 public int onGet(final Operation op) {
85 public int onPut(final Operation op) {
H A DBluetoothMasRequest.java26 import javax.obex.Operation;
129 Operation op = null;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1295 private final Operation[] mOperations = new Operation[MAX_RECENT_OPERATIONS];
1302 Operation operation = mOperations[index];
1304 operation = new Operation();
1340 final Operation operation = getOperationLocked(cookie);
1368 final Operation operation = getOperationLocked(cookie);
1379 final Operation operation = getOperationLocked(cookie);
1393 private Operation getOperationLocked(int cookie) {
1395 final Operation operation = mOperations[index];
1401 final Operation operatio
1441 private static final class Operation { class in class:SQLiteConnection
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp3488 AtomicRMWInst::BinOp Operation = GetDecodedRMWOperation(Record[OpNum]);
3489 if (Operation < AtomicRMWInst::FIRST_BINOP ||
3490 Operation > AtomicRMWInst::LAST_BINOP)
3496 I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope);
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java536 class Operation { class in class:BackupManagerService
540 Operation(int initialState, BackupRestoreTask callbackObj) { method in class:BackupManagerService.Operation
545 final SparseArray<Operation> mCurrentOperations = new SparseArray<Operation>();
2343 mCurrentOperations.put(token, new Operation(OP_PENDING, callback));
2355 Operation op = null;
2385 Operation op = null;
9250 Operation op = null;

Completed in 1496 milliseconds