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

  /packages/apps/Nfc/jni/
com_android_nfc_NativeLlcpServiceSocket.cpp 69 static jobject com_NativeLlcpServiceSocket_doAccept(JNIEnv *e, jobject o, jint miu, jint rw, jint linearBufferLength)
92 sOptions.miu = miu;
96 sWorkingBuffer.buffer = (uint8_t*)malloc((miu*rw)+miu+linearBufferLength);
97 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
160 /* Set socket MIU */
162 e->SetIntField(clientSocket, f,(jint)miu);
168 TRACE("socket handle 0x%02x: MIU = %d, RW = %d\n",hIncomingSocket, miu, rw)
    [all...]
com_android_nfc_NativeNfcManager.cpp 524 LlcpConfigInfo.miu = nat->miu;
780 ALOGI("LLCP Link activated (LTO=%d, MIU=%d, OPTION=0x%02x, WKS=0x%02x)",sLinkParams.lto,
781 sLinkParams.miu,
    [all...]
com_android_nfc.h 147 int miu; member in struct:nfc_jni_native_data
com_android_nfc_NativeLlcpSocket.cpp 386 TRACE("phLibNfc_Llcp_SocketGetRemoteOptions(MIU)");
394 TRACE("phLibNfc_Llcp_SocketGetRemoteOptions(MIU) returned 0x%04x[%s]", ret, nfc_jni_get_status_name(ret));
395 return remoteSocketOption.miu;
399 ALOGW("phLibNfc_Llcp_SocketGetRemoteOptions(MIU) returned 0x%04x[%s]", ret, nfc_jni_get_status_name(ret));
  /external/libnfc-nxp/inc/
phNfcLlcpTypes.h 41 #define PHFRINFC_LLCP_MIU_DEFAULT 128 /**< Default MIU value (in bytes).*/
112 /** The remote Maximum Information Unit Extension (NOTE: this is MIUX, not MIU !)*/
113 uint16_t miu; member in struct:phFriNfc_LlcpTransport_sSocketOptions
122 /** The remote Maximum Information Unit (NOTE: this is MIU, not MIUX !)*/
123 uint16_t miu; member in struct:phFriNfc_Llcp_sLinkParameters
  /packages/apps/Nfc/src/com/android/nfc/nxp/
NativeLlcpServiceSocket.java 38 private native NativeLlcpSocket doAccept(int miu, int rw, int linearBufferLength);
NativeNfcManager.java 187 private native NativeLlcpServiceSocket doCreateLlcpServiceSocket(int nSap, String sn, int miu,
190 public LlcpServerSocket createLlcpServerSocket(int nSap, String sn, int miu,
192 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
211 private native NativeLlcpSocket doCreateLlcpSocket(int sap, int miu, int rw,
214 public LlcpSocket createLlcpSocket(int sap, int miu, int rw,
216 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepClient.java 32 private static final int MIU = 128;
125 socket = NfcService.getInstance().createLlcpSocket(0, MIU, 1, 1024);
136 int miu = socket.getRemoteMiu(); local
137 int fragmentLength = (mFragmentLength == -1) ? miu : Math.min(miu, mFragmentLength);
SnepServer.java 39 private static final int MIU = 248;
171 mServiceName, MIU, 1, 1024);
196 int miu = communicationSocket.getRemoteMiu(); local
198 miu : Math.min(miu, mFragmentLength);
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 191 public LlcpServerSocket createLlcpServerSocket(int nSap, String sn, int miu,
194 public LlcpSocket createLlcpSocket(int sap, int miu, int rw,
NfcService.java     [all...]
  /external/libnfc-nxp/src/
phFriNfc_Llcp.c 376 sParams.miu = PHFRINFC_LLCP_MIU_DEFAULT;
412 /* Get MIU */
413 sParams.miu = (PHFRINFC_LLCP_MIU_DEFAULT + ((sValueBuffer.buffer[0] << 8) | sValueBuffer.buffer[1])) & PHFRINFC_LLCP_TLV_MIUX_MASK;
552 /* Update remote MIU to match local Tx buffer size */
553 if (Llcp->nTxBufferLength < (Llcp->sRemoteParams.miu + nMaxHeaderSize))
555 Llcp->sRemoteParams.miu = Llcp->nTxBufferLength - nMaxHeaderSize;
593 /* Set default MIU for PAX exchange */
594 Llcp->sRemoteParams.miu = PHFRINFC_LLCP_MIU_DEFAULT;
    [all...]
phFriNfc_LlcpTransport.c     [all...]
phFriNfc_LlcpTransport_Connection.c 709 /* Store the Remote parameters (MIU,RW) */
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/testdata/
voice.rtpdump     [all...]

Completed in 518 milliseconds