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

  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 142 int toSend = len;
143 while (toSend > 0) {
144 sent = send(mSocket, (void*)data, (size_t)toSend, 0);
146 toSend -= sent;
  /packages/services/Car/tests/carservice_unit_test/src/com/android/car/test/
MockedPowerHalService.java 101 int[] toSend = new int[] {state, param};
102 mSentStates.addLast(toSend);
  /external/webrtc/webrtc/p2p/base/
pseudotcp_unittest.cc 287 size_t position, tosend; local
292 if (send_stream_.Read(block, sizeof(block), &tosend, NULL) !=
294 sent = local_.Send(block, tosend);
304 sent = static_cast<int>(tosend = 0);
307 *done = (tosend == 0);
406 size_t position, tosend; local
411 tosend = bytes_per_send_ ? bytes_per_send_ : sizeof(block);
412 if (send_stream_.Read(block, tosend, &tosend, NULL) !=
414 sent = sender_->Send(block, tosend);
534 size_t position, tosend; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java 310 Intent toSend = new Intent(Intent.ACTION_VIEW);
311 toSend.setData(Uri.parse("http://com.android.cts.verifier"));
312 sendIntentInsideChooser(toSend);
497 private void sendIntentInsideChooser(Intent toSend) {
498 toSend.putExtra(CrossProfileTestActivity.EXTRA_STARTED_FROM_WORK, true);
499 Intent chooser = Intent.createChooser(toSend,
  /external/webrtc/webrtc/base/
socket_unittest.cc 724 int tosend = static_cast<int>(kDataSize - send_pos); local
725 int sent = accepted->Send(send_buffer.get() + send_pos, tosend);
733 EXPECT_LE(sent, tosend);
    [all...]
sslstreamadapter_unittest.cc 588 size_t position, tosend, size; local
599 if (send_stream_.Read(block, sizeof(block), &tosend, NULL) !=
601 rv = client_ssl_->Write(block, tosend, &sent, 0);
    [all...]

Completed in 1650 milliseconds