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

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeLlcpServiceSocket.java38 private native NativeLlcpSocket doAccept(int miu, int rw, int linearBufferLength); argument
H A DNativeNfcManager.java178 int rw, int linearBufferLength);
181 int rw, int linearBufferLength) throws LlcpException {
182 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
202 int linearBufferLength);
205 int linearBufferLength) throws LlcpException {
206 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
177 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
180 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
201 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
204 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeLlcpServiceSocket.java38 private native NativeLlcpSocket doAccept(int miu, int rw, int linearBufferLength); argument
H A DNativeNfcManager.java242 int rw, int linearBufferLength);
245 int rw, int linearBufferLength) throws LlcpException {
246 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
266 int linearBufferLength);
269 int linearBufferLength) throws LlcpException {
270 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
241 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
244 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
265 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
268 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeLlcpServiceSocket.cpp70 static jobject com_NativeLlcpServiceSocket_doAccept(JNIEnv *e, jobject o, jint miu, jint rw, jint linearBufferLength) argument
97 sWorkingBuffer.buffer = (uint8_t*)malloc((miu*rw)+miu+linearBufferLength);
98 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
H A Dcom_android_nfc_NativeNfcManager.cpp2178 static jobject com_android_nfc_NfcManager_doCreateLlcpServiceSocket(JNIEnv *e, jobject o, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
2198 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
2286 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
2287 TRACE("Service socket Linear buffer length = %02x\n",linearBufferLength);
2307 static jobject com_android_nfc_NfcManager_doCreateLlcpSocket(JNIEnv *e, jobject o, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
2326 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
/packages/apps/Nfc/nci/jni/
H A DNativeNfcManager.cpp1195 ** linearBufferLength: Max buffer size.
1200 static jobject nfcManager_doCreateLlcpServiceSocket (JNIEnv* e, jobject, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
1206 ALOGD ("%s: enter: sap=%i; name=%s; miu=%i; rw=%i; buffLen=%i", __FUNCTION__, nSap, serviceName.c_str(), miu, rw, linearBufferLength);
1240 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
1241 ALOGD ("%s: buffer length = %d", __FUNCTION__, linearBufferLength);
1346 ** linearBufferLength: Max buffer size.
1351 static jobject nfcManager_doCreateLlcpSocket (JNIEnv* e, jobject, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
1353 ALOGD ("%s: enter; sap=%d; miu=%d; rw=%d; buffer len=%d", __FUNCTION__, nSap, miu, rw, linearBufferLength);
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java222 int rw, int linearBufferLength) throws LlcpException;
225 int linearBufferLength) throws LlcpException;
221 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
224 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
H A DNfcService.java2009 public LlcpSocket createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
2011 return mDeviceHost.createLlcpSocket(sap, miu, rw, linearBufferLength);
2022 int linearBufferLength) throws LlcpException {
2023 return mDeviceHost.createLlcpServerSocket(sap, sn, miu, rw, linearBufferLength);
2021 createLlcpServerSocket(int sap, String sn, int miu, int rw, int linearBufferLength) argument

Completed in 102 milliseconds