Searched defs:operation (Results 1 - 23 of 23) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlarmManagerInterface.java25 public void set(int type, long triggerAtMillis, 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...]
H A DSdpManagerTestServer.java56 /* OBEX operation handlers */
100 public int onPut(Operation operation) { argument
110 public int onGet(Operation operation) { argument
120 HeaderSet reqHeaders = operation.getReceivedHeader();
136 Log.i(TAG, "OBEX-HANDLER: operation complete success");
138 Log.e(TAG, "OBEX-HANDLER: operation complete FAILED!");
/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/apps/UnifiedEmail/src/com/android/mail/ui/
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.
H A DAbstractActivityController.java1866 * configurations (peek mode), this operation may be prevented and the method will return false.
1869 * @return true if the operation was a success
1909 final Runnable operation = new Runnable() {
1916 if (!showNextConversation(targets, operation)) {
1985 * Clients may pass an operation to execute on the target that this method will run after
1986 * auto-advance is complete. The operation, if provided, may run immediately, or it may run
1994 * and will not execute the operation.
1997 * @param operation (optional) the operation to execute after advancing
1998 * @return <code>false</code> if this method handled or will execute the operation,
2001 showNextConversation(final Collection<Conversation> target, final Runnable operation) argument
[all...]
/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/Exchange/src/com/android/exchange/service/
H A DEasService.java105 final EasLoadAttachment operation = new EasLoadAttachment(EasService.this, account,
107 doOperation(operation, "IEmailService.loadAttachment");
116 final EasFolderSync operation = new EasFolderSync(EasService.this, account);
117 doOperation(operation, "IEmailService.updateFolderList");
158 final EasFolderSync operation = new EasFolderSync(EasService.this, hostAuth);
159 doOperation(operation, "IEmailService.validate");
160 return operation.getValidationResult();
169 final EasSearch operation = new EasSearch(EasService.this, account, searchParams,
171 doOperation(operation, "IEmailService.searchMessages");
172 return operation
391 doOperation(final EasOperation operation, final String loggingName) argument
[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 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
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 DOpenWnnDictionaryImpl.java147 /** The query base strings for query operation */
149 /** The query base strings for query operation */
152 /** The query base strings for query operation */
154 /** The query base strings for query operation */
156 /** The query base strings for query operation */
158 /** The query base strings for query operation */
161 /** The query base strings for query operation */
163 /** The query base strings for query operation */
165 /** The query base strings for query operation */
167 /** The query base strings for query operation */
417 createQuery( String keyString, WnnWord wnnWord, int operation, int order) argument
535 searchWord( int operation, int order, String keyString ) argument
580 searchWord( int operation, int order, String keyString, WnnWord wnnWord ) argument
[all...]
/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);
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
H A DRawContactDeltaListTests.java94 static ContentValues getValues(ContentProviderOperation operation) argument
98 return (ContentValues) field.get(operation);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DMenuExecutor.java62 // wait the operation to finish when we want to stop it.
345 MediaOperation operation = new MediaOperation(action, ids, listener);
346 mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null);
354 MediaOperation operation = new MediaOperation(action, ids, null);
355 mTask = mActivity.getBatchServiceThreadPoolIfAvailable().submit(operation, null);
418 public MediaOperation(int operation, ArrayList<Path> items, argument
420 mOperation = operation;
443 Log.e(TAG, "failed to execute operation " + mOperation
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapVcardManager.java695 private Operation operation; field in class:BluetoothPbapVcardManager.HandlerForStringBuffer
702 operation = op;
724 outputStream = operation.openOutputStream();
740 if (!BluetoothPbapObexServer.closeStream(outputStream, operation)) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DRichInputConnection.java133 * The timestamp of the last slow InputConnection operation
230 * reset: the caller should try again later to return to normal operation.
433 final int operation, final long timeout, final int n, final int flags) {
440 detectLaggyConnection(operation, timeout, startTime);
452 final int operation, final long timeout, final int n, final int flags) {
459 detectLaggyConnection(operation, timeout, startTime);
463 private void detectLaggyConnection(final int operation, final long timeout, final long startTime) { argument
466 final String operationName = OPERATION_NAMES[operation];
468 StatsUtils.onInputConnectionLaggy(operation, duration);
432 getTextBeforeCursorAndDetectLaggyConnection( final int operation, final long timeout, final int n, final int flags) argument
451 getTextAfterCursorAndDetectLaggyConnection( final int operation, final long timeout, final int n, final int flags) argument
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/
H A DOpenWnnDictionaryImplJni.c385 (JNIEnv *env, jobject obj, jlong wnnWork, jint operation, jint order, jstring keyString)
389 if( !( operation == jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_SEARCH_EXACT ||
390 operation == jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_SEARCH_PREFIX ||
391 operation == jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_SEARCH_LINK ) ||
413 work->cursor.cond.operation = operation;
420 if( operation == jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_SEARCH_LINK ) {
384 Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_searchWord(JNIEnv *env, jobject obj, jlong wnnWork, jint operation, jint order, jstring keyString) argument
/packages/apps/Email/provider_src/com/android/email/provider/
H A DContentCache.java671 * write operation that caused the invalidation
673 * @param operation a string describing the operation causing the invalidate (or null)
677 public synchronized void invalidate(String operation, Uri uri, String selection) { argument
678 if (DEBUG_CACHE && (operation != null)) {
679 LogUtils.d(mLogTag, "============ INVALIDATED BY " + operation + ": " + uri +
/packages/providers/TvProvider/src/com/android/providers/tv/
H A DTvProvider.java696 private SqlParams createSqlParams(String operation, Uri uri, String selection, argument
708 // Limit the operation only to the data that the calling package owns except for when
710 if (operation.equals(OP_QUERY) && callerHasReadTvListingsPermission()) {
725 if (!operation.equals(OP_QUERY)) {
726 throw new SecurityException(capitalize(operation)
789 if (operation.equals(OP_DELETE)) {
796 throw new UnsupportedOperationException(operation + " not permmitted on " + uri);
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndbdic.c100 static NJ_INT16 search_yomi_node(NJ_UINT8 operation, NJ_UINT8 *node,
605 if ((condition->operation == NJ_CUR_OP_FORE) &&
755 if (condition->operation == NJ_CUR_OP_FORE) {
798 if ((condition->operation == NJ_CUR_OP_FORE) &&
847 if (condition->operation == NJ_CUR_OP_FORE) {
1190 switch (con->operation) {
1226 switch (con->operation) {
1280 switch (con->operation) {
1641 ret = search_yomi_node(condition->operation,
1661 if (condition->operation
1975 search_yomi_node(NJ_UINT8 operation, NJ_UINT8 *node, NJ_UINT8 *now, NJ_UINT16 idx_no, NJ_CHAR *yomi, NJ_UINT16 yomilen, NJ_UINT8 * root, NJ_UINT8 * node_mid, NJ_UINT16 bit_left, NJ_UINT16 bit_data, NJ_UINT8 * data_top, NJ_INT16 ytbl_cnt, NJ_UINT16 y, NJ_UINT8 * ytbl_top, NJ_CACHE_INFO * storebuf, NJ_UINT8 ** con_node, NJ_UINT32 * data_offset) argument
[all...]
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
H A Dnj_lib.h181 NJ_UINT8 operation; member in struct:__anon87

Completed in 1093 milliseconds