Lines Matching refs:where

44  * the where clause).</br>
46 * --where "name=\'new_setting\'"
50 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'"
53 * # Query \"name\" and \"value\" columns from secure settings where \"name\" is equal to"
56 * --where "name=\'new_setting\'" --sort \"name ASC\"
69 + " <COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where:\n"
78 + "usage: adb shell content update --uri <URI> [--where <WHERE>]\n"
79 + " <WHERE> is a SQL style where clause in quotes (You have to escape single quotes"
84 + " value:s:newer_value --where \"name=\'new_setting\'\"\n"
87 + " [--bind <BINDING>...] [--where <WHERE>]\n"
91 + "--where \"name=\'new_setting\'\"\n"
94 + " [--where <WHERE>] [--sort <SORT_ORDER>]\n"
99 + " # Select \"name\" and \"value\" columns from secure settings where \"name\" is "
102 + " --where \"name=\'new_setting\'\" --sort \"name ASC\"\n"
110 private static final String ARGUMENT_WHERE = "--where";
176 String where = null;
181 where = argumentValueRequired(argument);
190 return new DeleteCommand(uri, where);
195 String where = null;
201 where = argumentValueRequired(argument);
216 return new UpdateCommand(uri, values, where);
223 String where = null;
228 where = argumentValueRequired(argument);
241 return new QueryCommand(uri, projection, where, sort);
351 public DeleteCommand(Uri uri, String where) {
353 mWhere = where;
366 public QueryCommand(Uri uri, String[] projection, String where, String sortOrder) {
367 super(uri, where);
429 public UpdateCommand(Uri uri, ContentValues contentValues, String where) {
431 mWhere = where;