Searched refs:grpid (Results 1 – 4 of 4) sorted by relevance
/external/scapy/scapy/ |
D | utils6.py | 262 def in6_getLinkScopedMcastAddr(addr, grpid=None, scope=2): argument 295 if grpid is None: 296 grpid = b'\x00\x00\x00\x00' 298 if isinstance(grpid, (bytes, str)): 299 if len(grpid) == 8: 301 grpid = int(grpid, 16) & 0xffffffff 305 elif len(grpid) == 4: 307 grpid = struct.unpack("!I", grpid)[0] 311 grpid = struct.pack("!I", grpid) 316 a = b'\xff' + flgscope + res + plen + iid + grpid
|
/external/syzkaller/sys/linux/ |
D | filesystem.txt | 146 grpid stringnoz["grpid"] 428 grpid stringnoz["grpid"]
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | BitCodeFormat.rst | 967 ``[ENTRY, grpid, paramidx, attr0, attr1, ...]`` 969 The ``ENTRY`` record (code 3) contains *grpid* and *paramidx* values, followed 971 *grpid* value is a unique key for the attribute group, which can be referenced
|
/external/scapy/test/ |
D | regression.uts | 1786 = in6_getLinkScopedMcastAddr() : grpid in different formats 1787 a = in6_getLinkScopedMcastAddr(addr="FE80::A12:34FF:FE56:7890", grpid=b"\x12\x34\x56\x78") 1788 b = in6_getLinkScopedMcastAddr(addr="FE80::A12:34FF:FE56:7890", grpid="12345678") 1789 c = in6_getLinkScopedMcastAddr(addr="FE80::A12:34FF:FE56:7890", grpid=305419896)
|