HomeSort by relevance Sort by last modified time
    Searched defs:mUri (Results 1 - 25 of 43) sorted by null

1 2

  /art/tools/ahat/src/main/com/android/ahat/
Query.java 28 private URI mUri;
35 mUri = uri;
90 newQuery.append(mUri.getRawPath());
  /cts/hostsidetests/appsecurity/test-apps/MediaStorageApp/src/com/android/cts/mediastorageapp/
MediaStoreUtils.java 154 private final Uri mUri;
159 mUri = Objects.requireNonNull(uri);
170 return mContext.getContentResolver().openFileDescriptor(mUri, "rw");
181 return mContext.getContentResolver().openOutputStream(mUri);
195 mContext.getContentResolver().update(mUri, values, null, null);
196 return mUri;
204 mContext.getContentResolver().delete(mUri, null, null);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreUtils.java 160 private final Uri mUri;
165 mUri = Objects.requireNonNull(uri);
176 return mContext.getContentResolver().openFileDescriptor(mUri, "rw");
187 return mContext.getContentResolver().openOutputStream(mUri);
201 mContext.getContentResolver().update(mUri, values, null, null);
202 return mUri;
210 mContext.getContentResolver().delete(mUri, null, null);
  /cts/tests/framework/base/windowmanager/util/src/android/server/wm/settings/
SettingsSession.java 82 protected final Uri mUri;
90 mUri = uri;
112 put(mUri, mSetter, value);
114 Log.i(TAG, " set: uri=" + mUri + " value=" + value);
120 return get(mUri, mGetter);
129 put(mUri, mSetter, mInitialValue);
131 Log.i(TAG, "close: uri=" + mUri + " value=" + mInitialValue);
134 delete(mUri);
136 Log.i(TAG, "close: uri=" + mUri + " deleted");
140 sSessionCounters.close(mUri);
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
ContentObservableTest.java 122 private Uri mUri;
132 mUri = uri;
145 mUri = null;
153 return mUri;
ContentObserverTest.java 169 private Uri mUri;
181 mUri = uri;
200 mUri = null;
212 return mUri;
  /developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
PlaylistItem.java 31 private final Uri mUri;
44 mUri = uri;
83 return mUri;
128 + state[mPlaybackState] + "] " + mUri.toString();
MainActivity.java 633 public final Uri mUri;
638 mUri = uri;
674 mSessionManager.add(item.mUri, item.mMime);
  /developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/player/
PlaylistItem.java 31 private final Uri mUri;
44 mUri = uri;
83 return mUri;
128 + state[mPlaybackState] + "] " + mUri.toString();
  /development/samples/NotePad/src/com/example/android/notepad/
TitleEditor.java 58 private Uri mUri;
79 mUri = getIntent().getData();
91 mUri, // The URI for the note that is to be retrieved.
185 mUri, // The URI for the note to update.
NoteEditor.java 77 private Uri mUri;
165 mUri = intent.getData();
176 mUri = getContentResolver().insert(intent.getData(), null);
183 if (mUri == null) {
195 setResult(RESULT_OK, (new Intent()).setAction(mUri.toString()));
332 Intent intent = new Intent(null, mUri);
345 mUri, // The URI for the note that is to be retrieved.
514 mUri, // The URI for the record to update.
531 getContentResolver().update(mUri, values, null, null);
545 getContentResolver().delete(mUri, null, null)
    [all...]
  /development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
PlaylistItem.java 31 private final Uri mUri;
44 mUri = uri;
83 return mUri;
128 + state[mPlaybackState] + "] " + mUri.toString();
  /cts/tests/tests/content/src/android/content/cts/
ClipboardManagerTest.java 295 Uri mUri;
300 mUri = uri;
362 if (expectedItem.mUri != null) {
363 assertEquals(expectedItem.mUri.toString(), item.getUri().toString());
  /developers/build/prebuilts/gradle/StorageClient/Application/src/main/java/com/example/android/storageclient/
StorageClientFragment.java 135 private Uri mUri;
140 mUri = getArguments().getParcelable("URI");
199 imageLoadAsyncTask.execute(mUri);
  /developers/samples/android/content/documentsUi/StorageClient/Application/src/main/java/com/example/android/storageclient/
StorageClientFragment.java 135 private Uri mUri;
140 mUri = getArguments().getParcelable("URI");
199 imageLoadAsyncTask.execute(mUri);
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailImpl.java 31 private final Uri mUri;
54 mUri = uri;
223 return mUri;
228 return mUri != null;
250 + mProviderData + ", mUri=" + mUri + ", mIsRead=" + mIsRead + ", mHasContent="
  /development/samples/browseable/StorageClient/src/com.example.android.storageclient/
StorageClientFragment.java 135 private Uri mUri;
140 mUri = getArguments().getParcelable("URI");
199 imageLoadAsyncTask.execute(mUri);
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
AudioFileOutput.java 38 private Uri mUri;
46 mUri = uri;
67 mContext.getContentResolver().openFileDescriptor(mUri, "w");
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
StackListener.java 227 private String mUri;
231 mUri = null;
236 mUri = uri;
241 return mUri;
  /frameworks/av/media/libmediaplayer2/nuplayer2/
GenericSource2.h 151 AString mUri;
  /external/apache-http/android/src/android/net/http/
RequestHandle.java 39 private WebAddress mUri;
71 mUri = uri;
175 mUri = new WebAddress(mUrl);
183 if (mUri != null) {
184 cookie = CookieManager.getInstance().getCookie(mUri.toString());
466 mUrl, mUri, mMethod, mHeaders, mRequest.mEventHandler,
474 mUrl, mUri, mMethod, mHeaders, mRequest.mEventHandler,
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.h 155 AString mUri;
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_TestDataBuilder.java 59 private Uri mUri;
71 assertNotNull("Row has not be inserted or loaded yet", mUri);
73 Cursor cursor = mProvider.query(mUri, IdQuery.COLUMNS, null, null, null, null);
83 assertTrue("Could not obtain _ID for URI: " + mUri, mId != -1);
89 mUri = uri;
94 if (mUri == null) {
96 mUri = ContentUris.withAppendedId(getContentUri(), mId);
98 return mUri;
128 mUri = mProvider.insert(getContentUri(), mValues);
129 assertNotNull("Could not insert a row in " + getContentUri(), mUri);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
PduPart.java 115 private Uri mUri = null;
178 mUri = uri;
187 return mUri;
  /frameworks/av/media/libstagefright/httplive/
LiveSession.h 163 AString mUri, mNewUri;

Completed in 651 milliseconds

1 2