OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:len_op
(Results
1 - 2
of
2
) sorted by null
/external/kernel-headers/original/uapi/linux/
target_core_user.h
67
__u32
len_op
;
member in struct:tcmu_cmd_entry_hdr
77
static inline enum tcmu_opcode tcmu_hdr_get_op(__u32
len_op
)
79
return
len_op
& TCMU_OP_MASK;
82
static inline void tcmu_hdr_set_op(__u32 *
len_op
, enum tcmu_opcode op)
84
*
len_op
&= ~TCMU_OP_MASK;
85
*
len_op
|= (op & TCMU_OP_MASK);
88
static inline __u32 tcmu_hdr_get_len(__u32
len_op
)
90
return
len_op
& ~TCMU_OP_MASK;
93
static inline void tcmu_hdr_set_len(__u32 *
len_op
, __u32 len)
95
*
len_op
&= TCMU_OP_MASK
[
all
...]
/bionic/libc/kernel/uapi/linux/
target_core_user.h
44
__u32
len_op
;
member in struct:tcmu_cmd_entry_hdr
Completed in 307 milliseconds