HomeSort by relevance Sort by last modified time
    Searched refs:contentPath (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/ex/common/java/com/android/common/
Search.java 95 final String contentPath = searchable.getSuggestPath();
96 if (contentPath != null) {
97 uriBuilder.appendEncodedPath(contentPath);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchableSource.java 105 String contentPath = mSearchable.getSuggestPath();
106 if (contentPath != null) {
107 uriBuilder.appendEncodedPath(contentPath);
364 final String contentPath = searchable.getSuggestPath();
365 if (contentPath != null) {
366 uriBuilder.appendEncodedPath(contentPath);
422 final String contentPath = searchable.getSuggestPath();
423 if (contentPath != null) {
424 uriBuilder.appendEncodedPath(contentPath);
  /external/qemu/android/avd/
info.c 113 char* contentPath;
163 AFREE(i->contentPath);
453 i->contentPath = iniFile_getString(i->rootIni, ROOT_ABS_PATH_KEY, NULL);
455 if (i->contentPath == NULL) {
461 if (!path_is_dir(i->contentPath)) {
469 AFREE(i->contentPath);
470 i->contentPath = ASTRDUP(temp);
475 D("virtual device content at %s", i->contentPath);
557 p = bufprint(p, end, "%s/%s", i->contentPath, fileName);
719 _avdInfo_getCoreHwIniPath(i, i->contentPath) < 0
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 183 private void sendIntent(String contentPath, String version, String required, String sig) {
186 i.putExtra(EXTRA_CONTENT_PATH, contentPath);
197 String contentPath = makeTemporaryContentFile(content);
198 sendIntent(contentPath, version, required, sig);
  /frameworks/base/core/java/android/app/
SearchManager.java     [all...]
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
SourceLatency.java 181 final String contentPath = searchable.getSuggestPath();
182 if (contentPath != null) {
183 uriBuilder.appendEncodedPath(contentPath);
  /frameworks/av/drm/libdrmframework/include/
DrmManagerService.h 73 const String8& rightsPath, const String8& contentPath);
IDrmManagerService.h 110 const String8& rightsPath, const String8& contentPath) = 0;
201 const String8& rightsPath, const String8& contentPath);
DrmManager.h 86 const String8& rightsPath, const String8& contentPath);
DrmManagerClientImpl.h 139 * @param[in] contentPath File path where content was saved
144 const String8& rightsPath, const String8& contentPath);
  /frameworks/av/drm/libdrmframework/plugins/common/include/
IDrmEngine.h 157 * @param[in] contentPath File path where content was saved
162 const String8& rightsPath, const String8& contentPath) = 0;
DrmEngineBase.h 52 const String8& rightsPath, const String8& contentPath);
202 * @param[in] contentPath File path where content was saved
207 const String8& rightspath, const String8& contentPath) = 0;
  /frameworks/av/drm/libdrmframework/plugins/passthru/include/
DrmPassthruPlugIn.h 46 const String8& rightsPath, const String8& contentPath);
  /frameworks/av/include/drm/
DrmManagerClient.h 271 * @param[in] contentPath File path where content was saved
276 const DrmRights& drmRights, const String8& rightsPath, const String8& contentPath);
  /frameworks/av/drm/common/
DrmEngineBase.cpp 61 const String8& rightsPath, const String8& contentPath) {
62 return onSaveRights(uniqueId, drmRights, rightsPath, contentPath);
IDrmManagerService.cpp 351 const String8& rightsPath, const String8& contentPath) {
373 data.writeString8((contentPath == String8("")) ? String8("NULL") : contentPath);
    [all...]
  /frameworks/av/drm/libdrmframework/
DrmManagerClient.cpp 63 const DrmRights& drmRights, const String8& rightsPath, const String8& contentPath) {
64 return mDrmManagerClientImpl->saveRights(mUniqueId, drmRights, rightsPath, contentPath);
DrmManagerClientImpl.cpp 144 const String8& rightsPath, const String8& contentPath) {
146 uniqueId, drmRights, rightsPath, contentPath);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 128 * @param contentPath File path where content was saved
135 const String8& contentPath);
  /frameworks/av/drm/drmserver/
DrmManagerService.cpp 123 const String8& rightsPath, const String8& contentPath) {
125 return mDrmManager->saveRights(uniqueId, drmRights, rightsPath, contentPath);
DrmManager.cpp 248 const String8& rightsPath, const String8& contentPath) {
254 result = rDrmEngine.saveRights(uniqueId, drmRights, rightsPath, contentPath);
  /frameworks/base/drm/java/android/drm/
DrmManagerClient.java 425 * <code>contentPath</code> can be null.</p>
429 * @param contentPath File path where content is saved.
437 DrmRights drmRights, String rightsPath, String contentPath) throws IOException {
439 throw new IllegalArgumentException("Given drmRights or contentPath is not valid");
444 return _saveRights(mUniqueId, drmRights, rightsPath, contentPath);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 723 final String contentPath = searchable.getSuggestPath();
724 if (contentPath != null) {
725 uriBuilder.appendEncodedPath(contentPath);
  /frameworks/av/drm/libdrmframework/plugins/passthru/src/
DrmPassthruPlugIn.cpp 139 const String8& rightsPath, const String8& contentPath) {
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 391 jobject drmRights, jstring rightsPath, jstring contentPath) {
404 Utility::getStringValue(env, contentPath));

Completed in 590 milliseconds

1 2