Searched refs:operation (Results 1 - 25 of 54) sorted by relevance

123

/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlarmManagerInterface.java25 public void set(int type, long triggerAtMillis, PendingIntent operation); argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DCPOWrapper.java46 public void setOperation(ContentProviderOperation operation) { argument
47 this.mOperation = operation;
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
H A DIVehicleNetworkListener.aidl28 void onHalError(int errorCode, int property, int operation) = 1;
H A DIVehicleNetwork.aidl44 void injectHalError(int errorCode, int property, int operation) = 8;
H A DVehicleNetwork.java52 void onHalError(int errorCode, int property, int operation); argument
504 public synchronized void injectHalError(int errorCode, int property, int operation) { argument
506 mService.injectHalError(errorCode, property, operation);
556 private void handleHalError(int errorCode, int property, int operation) { argument
557 mListener.onHalError(errorCode, property, operation);
579 private void notifyHalError(int errorCode, int property, int operation) { argument
580 Message msg = obtainMessage(MSG_HAL_ERROR, errorCode, property, operation);
625 public void onHalError(int errorCode, int property, int operation) { argument
628 vehicleNetwork.mEventHandler.notifyHalError(errorCode, property, operation);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderOperations.java61 * Adds an operation to the list of folder operations to be applied. The last
62 * operation for a folder will be retained in the list of operations.
67 Operation operation = new Operation(folder, add);
69 mOperations.put(folder.name, operation);
73 * Returns true if there is an operation for the specified folder
75 * @return Returns true if there is a add or remove operation for
83 * Returns true if there is an operation for the specified folder
85 * @return Returns true if there is a add or remove operation for
95 * @return Returns true if there is an operation that will apply the folder
104 * @return Returns true if there is an operation tha
[all...]
H A DFolderOperation.java38 public FolderOperation(Folder folder, Boolean operation) { argument
39 mAdd = operation;
70 * inbox to a trashed conversation, making it a destructive operation.
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DMockAlarmManager.java41 public void set(int actualAlarmType, long actualAlarmTime, PendingIntent operation) { argument
42 Assert.assertNotNull(operation);
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2ForTesting.java61 public void setExact(int type, long triggerAtTime, PendingIntent operation) { argument
66 PendingIntent operation) {
70 public void cancel(PendingIntent operation) { argument
65 setExactAndAllowWhileIdle(int type, long triggerAtTime, PendingIntent operation) argument
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
H A DObexTestServer.java34 /* OBEX operation handlers */
77 public int onPut(Operation operation) { argument
88 inStream = operation.openInputStream();
89 HeaderSet reqHeaders = operation.getReceivedHeader();
101 Log.i(TAG, "OBEX-HANDLER: operation complete success");
103 Log.e(TAG, "OBEX-HANDLER: operation complete FAILED!");
109 public int onGet(Operation operation) { argument
120 outStream = operation.openOutputStream();
121 HeaderSet reqHeaders = operation.getReceivedHeader();
133 Log.i(TAG, "OBEX-HANDLER: operation complet
[all...]
H A DMapObexTestServer.java78 /* OBEX operation handlers */
132 public int onPut(Operation operation) { argument
136 HeaderSet reqHeaders = operation.getReceivedHeader();
142 step.mServerPreAction.execute(step, reqHeaders, operation);
144 super.onPut(operation);
151 Log.i(TAG, "OBEX-HANDLER: operation complete success");
153 Log.e(TAG, "OBEX-HANDLER: operation complete FAILED!");
159 public int onGet(Operation operation) { argument
163 HeaderSet reqHeaders = operation.getReceivedHeader();
169 step.mServerPreAction.execute(step, reqHeaders, operation);
[all...]
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/utils/
H A DStatsUtils.java105 public static void onInputConnectionLaggy(final int operation, final long duration) { argument
108 public static void onDecoderLaggy(final int operation, final long duration) { argument
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnDictionary.java67 /** Search operation mode (exact matching). */
69 /** Search operation mode (prefix matching). */
71 /** Search operation mode (link search). */
214 * @param operation The search operation
226 public int searchWord(int operation, int order, String keyString ); argument
232 * set {@code SEARCH_LINK} mode to {@code operation}. The other arguments are
233 * the same as {@link #searchWord(int operation, int order, String keyString)}.
244 public int searchWord(int operation, int order, String keyString, WnnWord wnnWord ); argument
H A DOpenWnnDictionaryImplJni.java65 * Constant about the search operation (for JNI native library)
72 * Constant about the search operation (for JNI native library)
79 * Constant about the search operation (for JNI native library)
219 * @param operation The search operation (see "Constant about the search operation")
229 public static final native int searchWord(long work, int operation, int order, String keyString ); argument
431 * Create the string array that is used by operation of query
/packages/services/Car/libvehiclenetwork/include/
H A DIVehicleNetworkListener.h50 * @param operation
52 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation) = 0;
H A DVehicleNetwork.h47 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation) = 0;
66 void handleHalError(int32_t errorCode, int32_t property, int32_t operation);
130 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation);
139 void onHalError(int32_t errorCode, int32_t property, int32_t operation);
H A DIVehicleNetwork.h61 virtual status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) = 0;
/packages/services/Car/libvehiclenetwork/native/
H A DIVehicleNetworkListener.cpp66 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation) { argument
71 data.writeInt32(operation);
126 int32_t operation = data.readInt32(); local
127 onHalError(errorCode, property, operation);
H A DVehicleNetwork.cpp52 int32_t operation) {
54 VehicleHalError* error = new VehicleHalError(errorCode, property, operation);
95 mListener->onHalError(error->errorCode, error->property, error->operation);
320 void VehicleNetwork::onHalError(int32_t errorCode, int32_t property, int32_t operation) { argument
321 getEventHandler()->handleHalError(errorCode, property, operation);
51 handleHalError(int32_t errorCode, int32_t property, int32_t operation) argument
/packages/services/Car/tests/libvehiclenetwork-native-test/
H A DIVehicleNetworkTestListener.h49 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation) { argument
53 mOperation = operation;
102 bool isErrorMatching(int32_t errorCode, int32_t property, int32_t operation) { argument
104 return mErrorCode == errorCode && mProperty == property && mOperation == operation;
/packages/apps/Gallery2/src/com/android/photos/data/
H A DSQLiteContentProvider.java223 final ContentProviderOperation operation = operations.get(i);
224 if (!callerIsSyncAdapter && isCallerSyncAdapter(operation.getUri())) {
227 if (i > 0 && operation.isYieldAllowed()) {
233 results[i] = operation.apply(this, results, i);
/packages/services/Car/libvehiclenetwork/libvehiclenetwork-audio-helper/include/
H A DVehicleNetworkAudioHelper.h62 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarAlarmManager.java533 public void setExact(int type, long triggerAtTime, PendingIntent operation) { argument
534 mAlarmManager.setExact(type, triggerAtTime, operation);
537 public void setExactAndAllowWhileIdle(int type, long triggerAtTime, PendingIntent operation) { argument
538 mAlarmManager.setExactAndAllowWhileIdle(type, triggerAtTime, operation);
541 public void cancel(PendingIntent operation) { argument
542 mAlarmManager.cancel(operation);
H A DSQLiteContentProvider.java232 final ContentProviderOperation operation = operations.get(i);
233 if (i > 0 && operation.isYieldAllowed()) {
236 results[i] = operation.apply(this, results, i);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DActionModeHandler.java238 mode.getMenuInflater().inflate(R.menu.operation, menu);
288 int operation = MediaObject.SUPPORT_ALL;
293 operation &= support;
300 operation &= ~MediaObject.SUPPORT_EDIT;
304 operation &= SUPPORT_MULTIPLE_MASK;
307 return operation;
409 // Pass1: Deal with unexpanded media object list for menu operation.
423 final int operation = computeMenuOptions(selected);
437 // Pass2: Deal with expanded media object list for sharing operation.
456 MenuExecutor.updateMenuOperation(mMenu, operation);
[all...]

Completed in 654 milliseconds

123