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

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
ObexTestParams.java 11 public long bytesToSend;
13 public ObexTestParams(int packageSize, int throttle, long bytesToSend) {
16 this.bytesToSend = bytesToSend;
ObexTestDataHandler.java 64 mBytesToTransfer = params.bytesToSend;
70 if(V) Log.v(TAG, "readData() started data to read: " + params.bytesToSend);
110 mBytesToTransfer= params.bytesToSend;
116 if(V) Log.v(TAG, "writeData() started data to write: " + params.bytesToSend);
  /external/libvncserver/libvncserver/
rfbserver.c 1121 int bytesToSend=0;
1131 bytesToSend=0;
1134 bytesToSend=length;
1135 if (bytesToSend>rfbTextMaxSize)
1136 bytesToSend=rfbTextMaxSize;
1139 if (cl->ublen + sz_rfbTextChatMsg + bytesToSend > UPDATE_BUF_SIZE) {
1146 if (bytesToSend>0) {
1147 memcpy(&cl->updateBuf[cl->ublen], buffer, bytesToSend);
1148 cl->ublen += bytesToSend;
1150 rfbStatRecordMessageSent(cl, rfbTextChat, sz_rfbTextChatMsg+bytesToSend, sz_rfbTextChatMsg+bytesToSend)
    [all...]

Completed in 44 milliseconds