Searched refs:rw (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Nfc/jni/
H A Dcom_android_nfc_NativeLlcpServiceSocket.cpp69 static jobject com_NativeLlcpServiceSocket_doAccept(JNIEnv *e, jobject o, jint miu, jint rw, jint linearBufferLength) argument
93 sOptions.rw = rw;
96 sWorkingBuffer.buffer = (uint8_t*)malloc((miu*rw)+miu+linearBufferLength);
97 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
166 e->SetIntField(clientSocket, f,(jint)rw);
168 TRACE("socket handle 0x%02x: MIU = %d, RW = %d\n",hIncomingSocket, miu, rw);
H A Dcom_android_nfc_NativeNfcManager.cpp2192 static jobject com_android_nfc_NfcManager_doCreateLlcpServiceSocket(JNIEnv *e, jobject o, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
2209 sOptions.rw = rw;
2212 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
2311 e->SetIntField(serviceSocket, f,(jint)rw);
2312 TRACE("Service socket RW = %d\n",rw);
2317 static jobject com_android_nfc_NfcManager_doCreateLlcpSocket(JNIEnv *e, jobject o, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
2333 sOptions.rw = rw;
2336 sWorkingBuffer.length = (miu*rw)
[all...]
H A Dcom_android_nfc_NativeLlcpSocket.cpp421 return remoteSocketOption.rw;
/packages/apps/Nfc/src/com/android/nfc/nxp/
H A DNativeLlcpServiceSocket.java38 private native NativeLlcpSocket doAccept(int miu, int rw, int linearBufferLength); argument
H A DNativeNfcManager.java141 int rw, int linearBufferLength);
144 int rw, int linearBufferLength) throws LlcpException {
145 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
164 private native NativeLlcpSocket doCreateLlcpSocket(int sap, int miu, int rw, argument
167 public LlcpSocket createLlcpSocket(int sap, int miu, int rw, argument
169 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
140 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
143 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java179 int rw, int linearBufferLength) throws LlcpException;
181 public LlcpSocket createLlcpSocket(int sap, int miu, int rw, argument
178 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
H A DNfcService.java1484 public LlcpSocket createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
1486 return mDeviceHost.createLlcpSocket(sap, miu, rw, linearBufferLength);
1490 public LlcpServerSocket createLlcpServerSocket(int sap, String sn, int miu, int rw, argument
1492 return mDeviceHost.createLlcpServerSocket(sap, sn, miu, rw, linearBufferLength);

Completed in 64 milliseconds