Searched defs:linearBufferLength (Results 1 - 6 of 6) sorted by relevance

/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);
165 int linearBufferLength);
168 int linearBufferLength) throws LlcpException {
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
164 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
167 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
/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
96 sWorkingBuffer.buffer = (uint8_t*)malloc((miu*rw)+miu+linearBufferLength);
97 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
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
2212 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
2301 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
2302 TRACE("Service socket Linear buffer length = %02x\n",linearBufferLength);
2317 static jobject com_android_nfc_NfcManager_doCreateLlcpSocket(JNIEnv *e, jobject o, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
2336 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java179 int rw, int linearBufferLength) throws LlcpException;
182 int linearBufferLength) throws LlcpException;
178 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
181 createLlcpSocket(int sap, 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);
1491 int linearBufferLength) throws IOException, LlcpException {
1492 return mDeviceHost.createLlcpServerSocket(sap, sn, miu, rw, linearBufferLength);
1490 createLlcpServerSocket(int sap, String sn, int miu, int rw, int linearBufferLength) argument

Completed in 280 milliseconds