Searched refs:delete (Results 1 - 25 of 291) sorted by relevance

1234567891011>>

/packages/apps/Email/src/org/apache/james/mime4j/util/
H A DTempFile.java68 void delete(); method in interface:TempFile
H A DTempPath.java72 void delete(); method in interface:TempPath
/packages/apps/Email/src/org/apache/commons/io/
H A DFileDeleteStrategy.java25 * There is more than one way to delete a file.
26 * You may want to limit access to certain directories, to only delete
69 * @param fileToDelete the file to delete, null returns true
89 * @param fileToDelete the file to delete, not null
93 public void delete(File fileToDelete) throws IOException { method in class:FileDeleteStrategy
104 * when deletion fails. The {@link #delete(File)} and {@link #deleteQuietly(File)}
108 * This implementation uses {@link File#delete()}.
110 * @param fileToDelete the file to delete, exists, not null
116 return fileToDelete.delete();
121 * Gets a string describing the delete strateg
[all...]
H A DFileCleaningTracker.java82 * @param deleteStrategy the strategy to delete the file, null means normal
112 * @param deleteStrategy the strategy to delete the file, null means normal
127 * @param deleteStrategy the strategy to delete the file, null means normal
196 * Run the reaper thread that will delete files as their associated
211 tracker.delete();
238 * @param deleteStrategy the strategy to delete the file, null means normal
254 public boolean delete() { method in class:FileCleaningTracker.Tracker
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDatabaseModifier.java25 * An interface which wraps key database modify operations (insert, update, delete) to perform
47 * Use this method to delete entries from a table which you would otherwise do using the
48 * {@link SQLiteDatabase#delete(String, String, String[])} method.
50 public abstract int delete(String table, String whereClause, String[] whereArgs); method in interface:DatabaseModifier
H A DDataRowHandlerForIdentity.java64 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForIdentity
65 final int count = super.delete(db, txContext, c);
H A DVoicemailCleanupService.java51 contentResolver.delete(Voicemails.buildSourceUri(packageUninstalled), null, null);
52 contentResolver.delete(Status.buildSourceUri(packageUninstalled), null, null);
H A DDataRowHandlerForEmail.java74 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForEmail
78 int count = super.delete(db, txContext, c);
H A DDataRowHandlerForNickname.java76 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { method in class:DataRowHandlerForNickname
80 int count = super.delete(db, txContext, c);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
H A DBinaryTempFileBody.java75 mFile.delete();
86 mFile.delete();
/packages/apps/Email/src/org/apache/commons/io/output/
H A DLockableFileWriter.java244 lockFile.delete();
246 file.delete();
252 lockFile.delete();
254 file.delete();
271 lockFile.delete();
/packages/apps/Browser/src/com/android/browser/
H A DAccountsChangedReceiver.java62 delete(cr, name, type);
69 void delete(ContentResolver cr, String name, String type) { method in class:AccountsChangedReceiver.DeleteRemovedAccounts
70 // Pretend to be a sync adapter to delete the data and not mark
77 cr.delete(uri, DELETE_SELECTION, new String[] { name, type });
/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
H A DNaughtySuggestionProvider.java54 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:NaughtySuggestionProvider
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
H A DProvider.java47 public int delete(Uri uri, String selection, String[] selectionArgs) { method in class:Provider
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboard.java228 case CODE_DELETE: return "delete";
/packages/inputmethods/LatinIME/native/jni/src/gesture/
H A Dgesture_decoder_wrapper.h37 delete mIncrementalDecoderInterface;
H A Dincremental_decoder_wrapper.h37 delete mIncrementalDecoderInterface;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/
H A DDevice.java63 // It's very bad if we read a null device id; let's delete that file
64 if (!f.delete()) {
65 Log.e(Logging.LOG_TAG, "Can't delete null deviceName file; try overwrite.");
73 if (!f.delete()) {
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFileCache.java76 context.getDatabasePath(dbName).delete();
82 && name.endsWith(FILE_POSTFIX)) file.delete();
111 file.delete();
117 file.delete();
150 mDbHelper.getWritableDatabase().delete(
154 Log.w(TAG, "cannot delete entry: " + file.filename, t);
236 if (new File(mRootDir, path).delete()) {
238 mDbHelper.getWritableDatabase().delete(TABLE_NAME,
241 Log.w(TAG, "unable to delete file: " + path);
297 // delete ol
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAlarmProvider.java132 public int delete(Uri url, String where, String[] whereArgs) { method in class:AlarmProvider
138 count = db.delete("alarms", where, whereArgs);
148 count = db.delete("alarms", where, whereArgs);
151 throw new IllegalArgumentException("Cannot delete from URL: " + url);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppBatch.java142 new File(info.mFilename).delete();
170 new File(info.mFilename).delete();
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClusterAlbum.java127 public void delete() { method in class:ClusterAlbum
132 item.delete();
H A DFilterTypeSet.java126 public void delete() { method in class:FilterTypeSet
131 item.delete();
/packages/apps/Settings/tests/src/com/android/settings/bluetooth/
H A DUtf8ByteLengthFilterTest.java71 dest.delete(1, 3);
92 dest.delete(2, 6);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
H A DContactsDumpActivity.java60 mDeleteButton = (Button) findViewById(R.id.delete);
76 case R.id.delete:

Completed in 435 milliseconds

1234567891011>>