Lines Matching defs:content

17 package com.android.commands.content;
22 import android.content.ContentValues;
23 import android.content.IContentProvider;
41 * This class is a command line utility for manipulating content. A client
42 * can insert, update, and remove records in a content provider. For example,
49 * adb shell content insert --uri content://settings/secure --bind name:s:new_setting
55 * adb shell content update --uri content://settings/secure --bind value:s:newer_value
60 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'"
65 * adb shell content query --uri content://settings/secure --projection name:value
74 "usage: adb shell content [subcommand] [options]\n"
76 + "usage: adb shell content insert --uri <URI> [--user <USER_ID>]"
78 + " <URI> a content provider URI.\n"
86 + " adb shell content insert --uri content://settings/secure --bind name:s:new_setting"
89 + "usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]\n"
94 + " adb shell content update --uri content://settings/secure --bind"
97 + "usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING>"
101 + " adb shell content delete --uri content://settings/secure "
104 + "usage: adb shell content query --uri <URI> [--user <USER_ID>]"
112 + " adb shell content query --uri content://settings/secure --projection name:value"
115 + "usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>]\n"
121 + "usage: adb shell content read --uri <URI> [--user <USER_ID>]\n"
124 + " adb shell 'content read --uri content://settings/system/ringtone >"