Home
last modified time | relevance | path

Searched refs:pack_uint (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Demo/rpc/
Drpc.py54 self.pack_uint(stamp)
56 self.pack_uint(uid)
57 self.pack_uint(gid)
58 self.pack_uint(len(gids))
60 self.pack_uint(i)
63 self.pack_uint(xid)
65 self.pack_uint(RPCVERSION)
66 self.pack_uint(prog)
67 self.pack_uint(vers)
68 self.pack_uint(proc)
[all …]
Dxdr.py24 def pack_uint(self, x): member in Packer
29 def pack_uint(self, x): member in Packer
35 pack_int = pack_uint
44 self.pack_uint(int(x>>32 & 0xffffffff))
45 self.pack_uint(int(x & 0xffffffff))
69 self.pack_uint(n)
76 self.pack_uint(1)
78 self.pack_uint(0)
88 self.pack_uint(n)
Dnfsclient.py38 self.pack_uint(mode)
39 self.pack_uint(uid)
40 self.pack_uint(gid)
41 self.pack_uint(size)
53 self.pack_uint(cookie)
54 self.pack_uint(count)
58 self.pack_uint(secs)
59 self.pack_uint(usecs)
Drnusersclient.py17 self.pack_uint(ui_idle)
/external/python/cpython2/Lib/
Dxdrlib.py65 def pack_uint(self, x): member in Packer
80 self.pack_uint(x>>32 & 0xffffffffL)
84 self.pack_uint(x & 0xffffffffL)
110 self.pack_uint(n)
118 self.pack_uint(1)
120 self.pack_uint(0)
130 self.pack_uint(n)
/external/python/cpython2/Lib/test/
Dtest_xdrlib.py16 p.pack_uint(9)
23 p.pack_list(range(5), p.pack_uint)
66 self.assertRaisesConversion(self.packer.pack_uint, 'string')
/external/python/cpython2/Doc/library/
Dxdrlib.rst67 :meth:`pack_uint`, :meth:`pack_int`, :meth:`pack_enum`, :meth:`pack_bool`,