Home
last modified time | relevance | path

Searched refs:toSend (Results 1 – 2 of 2) sorted by relevance

/cts/suite/audio_quality/lib/src/
DClientSocket.cpp142 int toSend = len; in sendData() local
143 while (toSend > 0) { in sendData()
144 sent = send(mSocket, (void*)data, (size_t)toSend, 0); in sendData()
146 toSend -= sent; in sendData()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DByodHelperActivity.java320 Intent toSend = new Intent(Intent.ACTION_VIEW); in onCreate() local
321 toSend.setData(Uri.parse("http://com.android.cts.verifier")); in onCreate()
322 sendIntentInsideChooser(toSend); in onCreate()
515 private void sendIntentInsideChooser(Intent toSend) { in sendIntentInsideChooser() argument
516 toSend.putExtra(CrossProfileTestActivity.EXTRA_STARTED_FROM_WORK, true); in sendIntentInsideChooser()
517 Intent chooser = Intent.createChooser(toSend, in sendIntentInsideChooser()