/kernel/linux/linux-5.10/usr/ |
H A D | gen_initramfs.sh | 174 cat "$1" | while read type dir file perm ; do
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | qcom_scm.h | 24 int perm; member
|
H A D | vdpa.h | 183 * @perm: device access permission (VHOST_MAP_XX) 238 u64 pa, u32 perm);
|
/kernel/linux/linux-5.10/include/net/9p/ |
H A D | client.h | 189 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
|
/kernel/linux/linux-5.10/fs/sharefs/ |
H A D | sharefs.h | 52 __u16 perm; member
|
/kernel/linux/linux-6.6/fs/sharefs/ |
H A D | sharefs.h | 53 __u16 perm; member
|
/kernel/linux/linux-6.6/include/net/9p/ |
H A D | client.h | 195 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
|
/kernel/linux/linux-6.6/certs/ |
H A D | blacklist.c | 94 key->perm = BLACKLIST_KEY_PERM; in blacklist_key_instantiate()
|
/kernel/linux/linux-6.6/usr/ |
H A D | gen_initramfs.sh | 175 cat "$1" | while read type dir file perm ; do
|
/third_party/node/deps/simdutf/ |
H A D | simdutf.cpp | 12608 uint8x16_t perm = vqtbl1q_u8(in, sh); in convert_utf8_3_byte_to_utf16() local 12611 uint8x8_t perm_low = vget_low_u8(perm); // no-op in convert_utf8_3_byte_to_utf16() 12613 uint8x8_t perm_high = vget_high_u8(perm); in convert_utf8_3_byte_to_utf16() 12658 uint16x8_t perm = vreinterpretq_u16_u8(vqtbl1q_u8(in, sh)); in convert_utf8_1_to_2_byte_to_utf16() local 12662 uint16x8_t ascii = vandq_u16(perm, vmovq_n_u16(0x7f)); // 6 or 7 bits in convert_utf8_1_to_2_byte_to_utf16() 12665 uint16x8_t highbyte = vandq_u16(perm, vmovq_n_u16(0x1f00)); // 5 bits in convert_utf8_1_to_2_byte_to_utf16() 13287 uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); in convert_masked_utf8_to_utf16() local 13291 uint16x4_t lowperm = vmovn_u32(perm); in convert_masked_utf8_to_utf16() 13305 uint16x4_t highperm = vshrn_n_u32(perm, 16); in convert_masked_utf8_to_utf16() 13383 uint32x4_t perm in convert_masked_utf8_to_utf16() local 13538 uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); convert_masked_utf8_to_utf32() local 13600 uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); convert_masked_utf8_to_utf32() local 13685 uint16x8_t perm = vreinterpretq_u16_u8(vqtbl1q_u8(in, sh)); convert_masked_utf8_to_latin1() local [all...] |
/third_party/selinux/checkpolicy/ |
H A D | policy_define.c | 492 char *id = 0, *perm = 0; in define_common_perms() local 505 yyerror("no common name for common perm definition?"); in define_common_perms() 536 while ((perm = queue_remove(id_queue))) { in define_common_perms() 551 (hashtab_key_t) perm, in define_common_perms() 555 yyerror2("duplicate permission %s in common %s", perm, in define_common_perms() 576 if (perm) in define_common_perms() 577 free(perm); in define_common_perms() 599 yyerror("no tclass name for av perm definition?"); in define_av_perms() 1611 class_perm_node_t *perm; in define_compute_type_helper() local 1673 perm in define_compute_type_helper() [all...] |
/kernel/linux/linux-5.10/drivers/ata/ |
H A D | libata-transport.c | 709 #define SETUP_TEMPLATE(attrb, field, perm, test) \ 711 i->private_##attrb[count].attr.mode = perm; \
|
/kernel/linux/linux-6.6/drivers/ata/ |
H A D | libata-transport.c | 739 #define SETUP_TEMPLATE(attrb, field, perm, test) \ 741 i->private_##attrb[count].attr.mode = perm; \
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | vc1dsp_altivec.c | 324 #define ADD(dest,src,perm) \ in vc1_inv_trans_8x4_altivec() 325 GET_TMP2(dest, perm); \ in vc1_inv_trans_8x4_altivec()
|
/kernel/linux/linux-6.6/drivers/iommu/arm/arm-smmu-v3/ |
H A D | arm-smmu-v3.c | 1473 u32 perm = 0; in arm_smmu_handle_evt() local 1502 perm |= IOMMU_FAULT_PERM_READ; in arm_smmu_handle_evt() 1504 perm |= IOMMU_FAULT_PERM_WRITE; in arm_smmu_handle_evt() 1507 perm |= IOMMU_FAULT_PERM_EXEC; in arm_smmu_handle_evt() 1510 perm |= IOMMU_FAULT_PERM_PRIV; in arm_smmu_handle_evt() 1517 .perm = perm, in arm_smmu_handle_evt() 1530 .perm = perm, in arm_smmu_handle_evt()
|
/third_party/python/Lib/test/ |
H A D | test_itertools.py | 471 perm = list(permutations(s, r)) 477 self.assertEqual(len(perm), 0 if r>n else fact(n) / fact(n-r)) 483 self.assertEqual(perm, sorted(set(perm))) 488 self.assertEqual(perm, [t for t in prod if len(set(t))==r]) # perm: prods with no dups 489 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted 491 self.assertEqual(comb, list(filter(set(cwr).__contains__, perm))) # comb: perm that is a cwr 492 self.assertEqual(comb, list(filter(set(perm) [all...] |
H A D | test_ftplib.py | 40 MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\r\n" 41 "type=pdir;perm=e;unique==keVO1+d?3; ..\r\n" 42 "type=OS.unix=slink:/foobar;perm=;unique==keVO1+4G4; foobar\r\n" 43 "type=OS.unix=chr-13/29;perm=;unique==keVO1+5G4; device\r\n" 44 "type=OS.unix=blk-11/108;perm=;unique==keVO1+6G4; block\r\n" 45 "type=file;perm=awr;unique==keVO1+8G4; writable\r\n" 46 "type=dir;perm=cpmel;unique==keVO1+7G4; promiscuous\r\n" 47 "type=dir;perm=;unique==keVO1+1t2; no-exec\r\n" 48 "type=file;perm=r;unique==keVO1+EG4; two words\r\n" 49 "type=file;perm [all...] |
/kernel/linux/linux-6.6/drivers/vdpa/vdpa_user/ |
H A D | vduse_dev.c | 869 static unsigned int perm_to_file_flags(u8 perm) in perm_to_file_flags() argument 873 switch (perm) { in perm_to_file_flags() 1148 entry.perm = map->perm; in vduse_dev_ioctl() 1161 ret = receive_fd(f, perm_to_file_flags(entry.perm)); in vduse_dev_ioctl()
|
/kernel/linux/linux-5.10/drivers/vhost/ |
H A D | vhost.c | 1107 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) { in vhost_process_iotlb_msg() 1114 msg->uaddr, msg->perm)) { in vhost_process_iotlb_msg() 1292 msg->perm = access; in vhost_iotlb_miss() 1322 if (likely(map->perm & access)) in vhost_vq_meta_update() 1341 } else if (!(map->perm & access)) { in iotlb_access_ok() 2071 } else if (!(map->perm & access)) { in translate_desc()
|
/kernel/linux/linux-6.6/drivers/vhost/ |
H A D | vhost.c | 1384 if (!umem_access_ok(msg->uaddr, msg->size, msg->perm)) { in vhost_process_iotlb_msg() 1391 msg->uaddr, msg->perm)) { in vhost_process_iotlb_msg() 1584 msg->perm = access; in vhost_iotlb_miss() 1614 if (likely(map->perm & access)) in vhost_vq_meta_update() 1633 } else if (!(map->perm & access)) { in iotlb_access_ok() 2357 } else if (!(map->perm & access)) { in translate_desc()
|
/third_party/selinux/libsepol/src/ |
H A D | link.c | 113 * a) perm is required and the class _and_ perm are declared in base: only add a mapping. 114 * b) perm is required and the class and perm are _not_ declared in base: simply add the permissions 117 * c) perm is required, the class is declared in base, but the perm is not present. Nothing we can do 128 perm_datum_t *perm, *new_perm = NULL, *dest_perm; in permission_copy_callback() local 137 perm = (perm_datum_t *) datum; in permission_copy_callback() 146 /* If the object class was not declared in the base, add the perm in permission_copy_callback() 188 if (perm in permission_copy_callback() [all...] |
/third_party/selinux/libsepol/cil/src/ |
H A D | cil.c | 384 CIL_KEY_PERM = cil_strpool_add("perm"); in cil_init_keys() 2673 void cil_perm_init(struct cil_perm **perm) in cil_perm_init() argument 2675 *perm = cil_malloc(sizeof(**perm)); in cil_perm_init() 2677 cil_symtab_datum_init(&(*perm)->datum); in cil_perm_init() 2678 (*perm)->value = 0; in cil_perm_init() 2679 (*perm)->classperms = NULL; in cil_perm_init()
|
/kernel/linux/linux-5.10/security/keys/ |
H A D | gc.c | 236 key->perm = 0; in key_garbage_collector()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | vdpa.h | 308 * @perm: device access permission (VHOST_MAP_XX) 394 u64 iova, u64 size, u64 pa, u32 perm, void *opaque);
|
/kernel/linux/linux-6.6/security/keys/ |
H A D | gc.c | 236 key->perm = 0; in key_garbage_collector()
|