Home | History | Annotate | Download | only in content

Lines Matching refs:where

56  * the where clause).</br>
58 * --where "name=\'new_setting\'"
62 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'"
65 * # Query \"name\" and \"value\" columns from secure settings where \"name\" is equal to"
68 * --where "name=\'new_setting\'" --sort \"name ASC\"
82 + " <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where:\n"
91 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n"
92 + " <WHERE> is a SQL style where clause in quotes (You have to escape single quotes"
97 + " value:s:newer_value --where \"name=\'new_setting\'\"\n"
100 + " [--bind <BINDING>...] [--where <WHERE>]\n"
104 + "--where \"name=\'new_setting\'\"\n"
107 + " [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>]\n"
112 + " # Select \"name\" and \"value\" columns from secure settings where \"name\" is "
115 + " --where \"name=\'new_setting\'\" --sort \"name ASC\"\n"
145 private static final String ARGUMENT_WHERE = "--where";
227 String where = null;
234 where = argumentValueRequired(argument);
243 return new DeleteCommand(uri, userId, where);
249 String where = null;
257 where = argumentValueRequired(argument);
272 return new UpdateCommand(uri, userId, values, where);
370 String where = null;
377 where = argumentValueRequired(argument);
390 return new QueryCommand(uri, userId, projection, where, sort);
518 public DeleteCommand(Uri uri, int userId, String where) {
520 mWhere = where;
611 Uri uri, int userId, String[] projection, String where, String sortOrder) {
612 super(uri, userId, where);
675 public UpdateCommand(Uri uri, int userId, ContentValues contentValues, String where) {
677 mWhere = where;