HomeSort by relevance Sort by last modified time
    Searched refs:VendorUtils (Results 1 - 6 of 6) sorted by null

  /cts/tests/tests/telephony/src/android/telephony/embms/cts/
MbmsDownloadReceiverTest.java 32 import android.telephony.mbms.vendor.VendorUtils;
107 filter.addAction(VendorUtils.ACTION_DOWNLOAD_RESULT_INTERNAL);
108 filter.addAction(VendorUtils.ACTION_CLEANUP);
109 filter.addAction(VendorUtils.ACTION_FILE_DESCRIPTOR_REQUEST);
130 Intent downloadCompleteIntent = new Intent(VendorUtils.ACTION_DOWNLOAD_RESULT_INTERNAL);
134 Intent fdRequestIntent = new Intent(VendorUtils.ACTION_FILE_DESCRIPTOR_REQUEST);
138 Intent cleanupIntent = new Intent(VendorUtils.ACTION_CLEANUP);
144 Intent cleanupIntent = new Intent(VendorUtils.ACTION_CLEANUP);
146 cleanupIntent.putParcelableArrayListExtra(VendorUtils.EXTRA_TEMP_FILES_IN_USE,
148 cleanupIntent.putExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT, "this is not a directory path")
    [all...]
  /frameworks/base/telephony/java/android/telephony/mbms/
MbmsDownloadReceiver.java 31 import android.telephony.mbms.vendor.VendorUtils;
78 * {@link VendorUtils#ACTION_DOWNLOAD_RESULT_INTERNAL},
79 * {@link VendorUtils#ACTION_FILE_DESCRIPTOR_REQUEST}, or
80 * {@link VendorUtils#ACTION_CLEANUP}.
96 * Indicates that the supplied value for {@link VendorUtils#EXTRA_TEMP_FILE_ROOT}
149 if (!Objects.equals(intent.getStringExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT),
155 if (VendorUtils.ACTION_DOWNLOAD_RESULT_INTERNAL.equals(intent.getAction())) {
158 } else if (VendorUtils.ACTION_FILE_DESCRIPTOR_REQUEST.equals(intent.getAction())) {
160 } else if (VendorUtils.ACTION_CLEANUP.equals(intent.getAction())) {
168 if (VendorUtils.ACTION_DOWNLOAD_RESULT_INTERNAL.equals(intent.getAction()))
    [all...]
UriPathPair.java 25 import android.telephony.mbms.vendor.VendorUtils;
72 * app in the intents in {@link VendorUtils}.
  /packages/services/Telephony/testapps/EmbmsServiceTestApp/src/com/android/phone/testapps/embmsmw/
EmbmsSampleDownloadService.java 44 import android.telephony.mbms.vendor.VendorUtils;
89 ComponentName appReceiver = VendorUtils.getAppReceiverFromPackageName(
222 Intent cleanupIntent = new Intent(VendorUtils.ACTION_CLEANUP);
224 cleanupIntent.putExtra(VendorUtils.EXTRA_SERVICE_ID, fileServiceInfo.getServiceId());
225 cleanupIntent.putExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT,
230 cleanupIntent.putExtra(VendorUtils.EXTRA_TEMP_FILES_IN_USE,
240 Intent fdRequestIntent = new Intent(VendorUtils.ACTION_FILE_DESCRIPTOR_REQUEST);
241 fdRequestIntent.putExtra(VendorUtils.EXTRA_SERVICE_ID, serviceInfo.getServiceId());
242 fdRequestIntent.putExtra(VendorUtils.EXTRA_FD_COUNT, 10);
243 fdRequestIntent.putExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT
    [all...]
  /frameworks/base/telephony/java/android/telephony/mbms/vendor/
VendorUtils.java 39 public class VendorUtils {
  /cts/tests/tests/telephony/EmbmsMiddlewareTestApp/src/android/telephony/cts/embmstestapp/
CtsDownloadService.java 43 import android.telephony.mbms.vendor.VendorUtils;
346 Intent requestIntent = new Intent(VendorUtils.ACTION_FILE_DESCRIPTOR_REQUEST);
347 requestIntent.putExtra(VendorUtils.EXTRA_SERVICE_ID, request.getFileServiceId());
349 requestIntent.putExtra(VendorUtils.EXTRA_FD_COUNT, requestedFiles.size());
350 requestIntent.putExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT, mTempFileRootDirPath);
364 VendorUtils.EXTRA_FREE_URI_LIST);
419 new Intent(VendorUtils.ACTION_DOWNLOAD_RESULT_INTERNAL);
422 downloadResultIntent.putExtra(VendorUtils.EXTRA_FINAL_URI,
426 downloadResultIntent.putExtra(VendorUtils.EXTRA_TEMP_FILE_ROOT,

Completed in 157 milliseconds