Home
last modified time | relevance | path

Searched defs:Qid (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/syscall/
Ddir_plan9.go21 type Qid struct { struct
22 Path uint64 // the file server's unique identification for the file
23 Vers uint32 // version number for given Path
24 Type uint8 // the type of the file (syscall.QTDIR for example)
34 Qid Qid // unique id from server member
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/sys/plan9/
Ddir_plan9.go18 type Qid struct { struct
19 Path uint64 // the file server's unique identification for the file
20 Vers uint32 // version number for given Path
21 Type uint8 // the type of the file (plan9.QTDIR for example)
31 Qid Qid // unique id from server member
/aosp_15_r20/external/rust/android-crates-io/crates/p9/src/protocol/
Dmessages.rs722 pub struct Qid { struct
730 pub qid: Qid, argument
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/IndustryStandard/
H A DNvme.h446 UINT32 Qid:16; /* Queue Identifier */ member
465 UINT32 Qid:16; /* Queue Identifier */ member
484 UINT16 Qid; member
495 UINT16 Qid; member
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/IndustryStandard/
H A DNvme.h455 UINT32 Qid:16; /* Queue Identifier */ member
474 UINT32 Qid:16; /* Queue Identifier */ member
493 UINT16 Qid; member
504 UINT16 Qid; member
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/IndustryStandard/
H A DNvme.h452 UINT32 Qid:16; /* Queue Identifier */ member
471 UINT32 Qid:16; /* Queue Identifier */ member
490 UINT16 Qid; member
501 UINT16 Qid; member
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/IndustryStandard/
H A DNvme.h580 UINT32 Qid : 16; /* Queue Identifier */ member
599 UINT32 Qid : 16; /* Queue Identifier */ member
618 UINT16 Qid; member
629 UINT16 Qid; member
/aosp_15_r20/external/rust/android-crates-io/crates/p9/src/server/
Dmod.rs161 impl From<libc::stat64> for Qid { implementation
162 fn from(st: libc::stat64) -> Qid { in from()
Dtests.rs173 fn check_qid(qid: &Qid, md: &fs::Metadata) { in check_qid()