HomeSort by: relevance | last modified time | path
    Searched defs:xid (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/lib/libsa/
iodesc.h 70 u_long xid; /* transaction identification */ member in struct:iodesc
  /src/sys/arch/mips/ralink/
ralink_mainbus.c 93 } xid; local in function:mainbus_attach
101 xid.id[0] = bus_space_read_4(sc->sc_memt, ra_sysctl_bsh, RA_SYSCTL_ID0);
102 xid.id[1] = bus_space_read_4(sc->sc_memt, ra_sysctl_bsh, RA_SYSCTL_ID1);
103 xid.buf[8] = '\0';
104 if (xid.buf[6] == ' ') {
105 xid.buf[6] = '\0';
106 } else if (xid.buf[7] == ' ') {
107 xid.buf[7] = '\0';
109 const char * const manuf = xid.buf[0] == 'M' ? "Mediatek" : "Ralink";
111 aprint_naive(": %s %s System Bus\n", manuf, xid.buf)
    [all...]
  /src/usr.bin/rump_dhcpclient/
dhcpcd.h 73 uint32_t xid; member in struct:if_state
dhcp.h 143 uint32_t xid; /* transaction id */ member in struct:dhcp_message
  /src/usr.sbin/bootp/bootptest/
bootptest.c 146 int32 xid; local in function:main
301 xid = (int32) getpid();
302 bp->bp_xid = (u_int32) htonl(xid);
  /src/sys/nfs/
nfs_clntsocket.c 316 * with outstanding requests using the xid, until ours is found.
387 * Get the xid and check that it is an rpc reply
515 u_int32_t xid; local in function:nfs_request
623 auth_str, verf_len, verf_str, mrest, mrest_len, &mheadend, &xid);
636 rep->r_xid = xid;
krpc_subr.c 125 #define MIN_REPLY_HDR 16 /* xid, dir, astat, errno */
227 static u_int32_t xid = ~0xFF; local in function:krpc_call
289 xid++;
290 call->rp_xid = txdr_unsigned(xid);
316 &xid, l);
nfs_bootdhcp.c 293 int xid; member in struct:bootpcontext
381 if (bootp->bp_xid != bpc->xid) {
382 DPRINTF(("bootpcheck: xid %d != %d\n", bootp->bp_xid,
383 bpc->xid));
487 static u_int32_t xid = ~0xFF; local in function:bootpc_call
605 * Note: xid is host order! (opaque to server)
611 bootp->bp_xid = ++xid;
626 bpc.xid = xid;
nfs_subs.c 2033 /* get next xid. skip 0 */
2042 * assign a new xid for existing request.
2048 u_int32_t xid; local in function:nfs_renewxid
2051 xid = nfs_getxid();
2057 m_copyback(req->r_mreq, off, sizeof(xid), (void *)&xid);
2058 req->r_xid = xid;
  /src/sys/fs/nfs/common/
krpc_subr.c 116 #define MIN_REPLY_HDR 16 /* xid, dir, astat, errno */
201 static u_int32_t xid = ~0xFF; local in function:krpc_call
282 xid++;
283 call->rp_xid = txdr_unsigned(xid);
366 if (reply->rp_xid != txdr_unsigned(xid))
bootp_subr.c 125 u_int32_t xid; member in struct:bootp_packet
160 u_int32_t xid; member in struct:bootpc_ifcontext
188 u_int32_t xid; member in struct:bootpc_globalcontext
455 ifctx->xid = gctx->xid;
461 gctx->xid += 0x100;
827 if (gctx->reply.xid != ifctx->call.xid)
1276 ifctx->xid++;
1277 ifctx->call.xid = txdr_unsigned(ifctx->xid)
    [all...]
  /src/sys/fs/nfs/nlm/
nlm_advlock.c 768 u_int xid; local in function:nlm_setlock
799 xid = atomic_fetchadd_int(&nlm_xid, 1);
800 args.cookie.n_len = sizeof(xid);
801 args.cookie.n_bytes = (char*) &xid;
865 xid = atomic_fetchadd_int(&nlm_xid, 1);
866 cancel.cookie.n_len = sizeof(xid);
867 cancel.cookie.n_bytes = (char*) &xid;
967 u_int xid; local in function:nlm_clearlock
985 xid = atomic_fetchadd_int(&nlm_xid, 1);
986 args.cookie.n_len = sizeof(xid);
1042 u_int xid; local in function:nlm_getlock
    [all...]

Completed in 21 milliseconds