Lines Matching defs:uri

40  * adb shell content insert --uri content://settings/secure --bind name:s:new_setting
46 * adb shell content update --uri content://settings/secure --bind value:s:newer_value
51 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'"
56 * adb shell content query --uri content://settings/secure --projection name:value
67 + "usage: adb shell content insert --uri <URI> [--user <USER_ID>]"
77 + " adb shell content insert --uri content://settings/secure --bind name:s:new_setting"
80 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n"
85 + " adb shell content update --uri content://settings/secure --bind"
88 + "usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING>"
92 + " adb shell content delete --uri content://settings/secure "
95 + "usage: adb shell content query --uri <URI> [--user <USER_ID>]"
103 + " adb shell content query --uri content://settings/secure --projection name:value"
114 private static final String ARGUMENT_URI = "--uri";
155 Uri uri = null;
160 uri = Uri.parse(argumentValueRequired(argument));
169 if (uri == null) {
171 + " Did you specify --uri argument?");
177 return new InsertCommand(uri, userId, values);
181 Uri uri = null;
186 uri = Uri.parse(argumentValueRequired(argument));
195 if (uri == null) {
197 + " Did you specify --uri argument?");
199 return new DeleteCommand(uri, userId, where);
203 Uri uri = null;
209 uri = Uri.parse(argumentValueRequired(argument));
220 if (uri == null) {
222 + " Did you specify --uri argument?");
228 return new UpdateCommand(uri, userId, values, where);
232 Uri uri = null;
239 uri = Uri.parse(argumentValueRequired(argument));
252 if (uri == null) {
254 + " Did you specify --uri argument?");
256 return new QueryCommand(uri, userId, projection, where, sort);
318 public Command(Uri uri, int userId) {
319 mUri = uri;
354 public InsertCommand(Uri uri, int userId, ContentValues contentValues) {
355 super(uri, userId);
368 public DeleteCommand(Uri uri, int userId, String where) {
369 super(uri, userId);
384 Uri uri, int userId, String[] projection, String where, String sortOrder) {
385 super(uri, userId, where);
447 public UpdateCommand(Uri uri, int userId, ContentValues contentValues, String where) {
448 super(uri, userId, contentValues);