HomeSort by relevance Sort by last modified time
    Searched full:nsap (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/smack/src/org/xbill/DNS/
NSAPRecord.java 9 * NSAP Address Record.
61 * Creates an NSAP Record from the given data
62 * @param address The NSAP address.
63 * @throws IllegalArgumentException The address is not a valid NSAP address.
67 super(name, Type.NSAP, dclass, ttl);
70 throw new IllegalArgumentException("invalid NSAP address " +
85 throw st.exception("invalid NSAP address " + addr);
89 * Returns the NSAP address.
NSAP_PTRRecord.java 6 * NSAP Pointer Record - maps a domain name representing an NSAP Address to
Type.java 78 /** NSAP address */
79 public static final int NSAP = 22;
81 /** Reverse NSAP address (deprecated) */
248 types.add(NSAP, "NSAP", new NSAPRecord());
249 types.add(NSAP_PTR, "NSAP-PTR", new NSAP_PTRRecord());
  /external/tcpdump/
af.c 35 { AFNUM_NSAP, "NSAP"},
47 { AFNUM_E164NSAP, "E.164 with NSAP subaddress"},
addrtoname.c 401 /* Find the hash node that corresponds the NSAP 'nsap' */
404 lookup_nsap(register const u_char *nsap)
407 unsigned int nlen = *nsap;
409 const u_char *ensap = nsap + nlen - 6;
425 memcmp((const char *)&(nsap[1]),
436 memcpy((char *)tp->e_nsap, (const char *)nsap, nlen + 1);
636 isonsap_string(const u_char *nsap, register u_int nsap_length)
645 tp = lookup_nsap(nsap);
654 *cp++ = hex[*nsap >> 4]
    [all...]
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSRecordType.java 103 * for NSAP address, NSAP style A record [RFC1706]
105 TYPE_NSAP("nsap", 22),
109 TYPE_NSAP_PTR("nsap-otr", 23),
  /packages/apps/Nfc/nci/jni/
NativeLlcpConnectionlessSocket.cpp 54 ** nsap: service access point.
60 static jboolean nativeLlcpConnectionlessSocket_doSendTo (JNIEnv *e, jobject o, jint nsap, jbyteArray data)
62 ALOGD ("%s: nsap = %d", __FUNCTION__, nsap);
77 tNFA_STATUS status = NFA_P2pSendUI((tNFA_HANDLE) handle, nsap, byte_count, raw_ptr);
NativeLlcpSocket.cpp 34 ** nSap: Service access point.
39 static jboolean nativeLlcpSocket_doConnect (JNIEnv* e, jobject o, jint nSap)
41 ALOGD ("%s: enter; sap=%d", __FUNCTION__, nSap);
44 bool stat = PeerToPeer::getInstance().connectConnOriented (jniHandle, nSap);
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcManager.java 117 private native NativeLlcpConnectionlessSocket doCreateLlcpConnectionlessSocket(int nSap,
121 public LlcpConnectionlessSocket createLlcpConnectionlessSocket(int nSap, String sn)
123 LlcpConnectionlessSocket socket = doCreateLlcpConnectionlessSocket(nSap, sn);
142 private native NativeLlcpServiceSocket doCreateLlcpServiceSocket(int nSap, String sn, int miu,
145 public LlcpServerSocket createLlcpServerSocket(int nSap, String sn, int miu,
147 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
NativeLlcpSocket.java 35 private native boolean doConnect(int nSap);
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcManager.java 175 private native NativeLlcpConnectionlessSocket doCreateLlcpConnectionlessSocket(int nSap,
179 public LlcpConnectionlessSocket createLlcpConnectionlessSocket(int nSap, String sn)
181 LlcpConnectionlessSocket socket = doCreateLlcpConnectionlessSocket(nSap, sn);
200 private native NativeLlcpServiceSocket doCreateLlcpServiceSocket(int nSap, String sn, int miu,
203 public LlcpServerSocket createLlcpServerSocket(int nSap, String sn, int miu,
205 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
NativeLlcpSocket.java 35 private native boolean doConnect(int nSap);
  /external/libnfc-nxp/src/
phFriNfc_LlcpTransport.c 42 uint8_t nSap,
67 *pnSap = psTransport->pCachedServiceNames[i].nSap;
153 uint8_t nSap)
174 &nSap);
230 pCachedServiceName->nSap = pSocket->socket_sSap;
257 uint8_t nTid, nSap;
277 nSap = psTransport->nDiscoveryResSapList[index];
282 nSap);
324 uint8_t nSap;
360 nSap = PHFRINFC_LLCP_SAP_SDP
    [all...]
phFriNfc_LlcpTransport_Connectionless.h 65 * \param[in] nSap The destination SAP.
84 uint8_t nSap,
phFriNfc_LlcpTransport_Connectionless.c 226 * \param[in] nSap The destination SAP.
245 uint8_t nSap,
261 pLlcpSocket->socket_dSap = nSap;
267 pLlcpSocket->sLlcpHeader.dsap = nSap;
  /bionic/libc/dns/resolv/
res_send.c 161 static int connect_with_timeout(int sock, const struct sockaddr *nsap,
506 struct sockaddr *nsap; local
508 nsap = get_nsaddr(statp, (size_t)ns);
509 nsaplen = get_salen(nsap);
519 act = (*statp->qhook)(&nsap, &buf, &buflen,
544 getnameinfo(nsap, (socklen_t)nsaplen, abuf, sizeof(abuf),
623 act = (*statp->rhook)(nsap, buf, buflen,
742 struct sockaddr *nsap; local
754 nsap = get_nsaddr(statp, (size_t)ns);
755 nsaplen = get_salen(nsap);
1053 const struct sockaddr *nsap; local
    [all...]
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeLlcpSocket.cpp 112 static jboolean com_android_nfc_NativeLlcpSocket_doConnect(JNIEnv *e, jobject o, jint nSap)
131 TRACE("phLibNfc_Llcp_Connect(%d)",nSap);
135 nSap,
141 ALOGE("phLibNfc_Llcp_Connect(%d) returned 0x%04x[%s]", nSap, ret, nfc_jni_get_status_name(ret));
144 TRACE("phLibNfc_Llcp_Connect(%d) returned 0x%04x[%s]", nSap, ret, nfc_jni_get_status_name(ret));
com_android_nfc_NativeLlcpConnectionlessSocket.cpp 57 static jboolean com_android_nfc_NativeLlcpConnectionlessSocket_doSendTo(JNIEnv *e, jobject o, jint nsap, jbyteArray data)
84 nsap,
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 190 public LlcpConnectionlessSocket createLlcpConnectionlessSocket(int nSap, String sn)
193 public LlcpServerSocket createLlcpServerSocket(int nSap, String sn, int miu,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/netinet/
ip6.h 151 /* NSAP Address Option */
158 /* followed by source NSAP */
159 /* followed by destination NSAP */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/netinet/
ip6.h 151 /* NSAP Address Option */
158 /* followed by source NSAP */
159 /* followed by destination NSAP */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/lib32/
libresolv-2.11.1.so 
libresolv.so 
libresolv.so.2 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/
libresolv-2.11.1.so 

Completed in 567 milliseconds

1 2 3 4 5 6