HomeSort by relevance Sort by last modified time
    Searched refs:perm (Results 176 - 200 of 295) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webrtc/webrtc/p2p/base/
turnserver.h 121 void OnPermissionDestroyed(Permission* perm);
  /external/openssh/
sftp-server.c 690 mode = (a.flags & SSH2_FILEXFER_ATTR_PERMISSIONS) ? a.perm : 0666;
912 logit("set \"%s\" mode %04o", name, a.perm);
913 r = chmod(name, a.perm & 07777);
965 logit("set \"%s\" mode %04o", name, a.perm);
967 r = fchmod(fd, a.perm & 07777);
969 r = chmod(name, a.perm & 07777);
1119 a.perm & 07777 : 0777;
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
AccessPermissionWithDiffSigTest.java 1365 final UriPermission perm = perms.get(0); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_itertools.py 287 perm = list(permutations(s, r))
293 self.assertEqual(len(perm), 0 if r>n else fact(n) // fact(n-r))
299 self.assertEqual(perm, sorted(set(perm)))
304 self.assertEqual(perm, [t for t in prod if len(set(t))==r]) # perm: prods with no dups
305 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted
307 self.assertEqual(comb, filter(set(cwr).__contains__, perm)) # comb: perm that is a cwr
308 self.assertEqual(comb, filter(set(perm).__contains__, cwr)) # comb: cwr that is a perm
    [all...]
  /external/selinux/checkpolicy/
policy_define.c 497 char *id = 0, *perm = 0; local
510 yyerror("no common name for common perm definition?");
541 while ((perm = queue_remove(id_queue))) {
556 (hashtab_key_t) perm,
560 yyerror2("duplicate permission %s in common %s", perm,
581 if (perm)
582 free(perm);
604 yyerror("no tclass name for av perm definition?");
1624 class_perm_node_t *perm; local
    [all...]
  /external/tensorflow/tensorflow/core/ops/
array_ops_test.cc 998 Tensor perm = test::AsTensor<int32>({0}); local
    [all...]
  /external/u-boot/arch/powerpc/cpu/mpc85xx/
start.S 177 .macro create_tlb1_entry esel ts tsize epn wimg rpn perm phy_high scratch
187 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h
188 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
199 .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch
209 lis \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@h
210 ori \scratch, \scratch, FSL_BOOKE_MAS3(\rpn, 0, \perm)@l
    [all...]
  /build/soong/finder/fs/
fs.go 62 WriteFile(path string, data []byte, perm os.FileMode) (err error)
118 func (osFs) WriteFile(path string, data []byte, perm os.FileMode) error {
119 return ioutil.WriteFile(path, data, perm)
670 func (m *MockFs) WriteFile(filePath string, data []byte, perm os.FileMode) error {
  /cts/tests/tests/permission/src/android/permission/cts/
PermissionControllerTest.java 152 private void setAppOp(@NonNull String pkg, @NonNull String perm, int mode) throws Exception {
153 sContext.getSystemService(AppOpsManager.class).setUidMode(permissionToOp(perm),
  /external/eigen/Eigen/src/Core/
PermutationMatrix.h 246 inline PlainPermutationType operator*(const InverseImpl<Other, PermutationStorage>& other, const PermutationBase& perm)
247 { return PlainPermutationType(internal::PermPermProduct, other.eval(), perm); }
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 674 void addPermission(Permission perm) { perms.add(perm); }
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
interfaces.py 442 for perm in av.perms:
443 p = self.map_param(perm, ifcall)
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
statistical_testing.py 169 perm = array_ops.concat([math_ops.range(1, n), [0]], axis=0)
170 samples = array_ops.transpose(samples, perm)
    [all...]
  /external/tensorflow/tensorflow/contrib/factorization/python/ops/
gmm_ops.py 298 diff, perm=[0, 2, 1]), lower=True))
388 x_trans = array_ops.transpose(x, perm=[0, 2, 1])
  /external/vboot_reference/tests/
rollback_index2_tests.c 163 uint32_t TlclDefineSpace(uint32_t index, uint32_t perm, uint32_t size)
166 index, perm, size);
  /external/bzip2/
bzlib_private.h 408 Int32 perm [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; member in struct:__anon15610
  /external/selinux/python/sepolicy/sepolicy/
__init__.py 411 def get_conditionals(src, dest, tclass, perm):
428 set(perm).issubset(x[PERMS]) and
1089 for perm in perms:
1090 if perm not in dict[PERMS]:
    [all...]
  /external/tensorflow/tensorflow/lite/experimental/examples/lstm/
unidirectional_sequence_lstm_test.py 84 lstm_input = tf.transpose(x, perm=[1, 0, 2])
unidirectional_sequence_rnn_test.py 80 rnn_input = tf.transpose(x, perm=[1, 0, 2])
  /external/u-boot/lib/bzip2/
bzlib_private.h 436 Int32 perm [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; member in struct:__anon47932
  /external/libchrome/base/files/
file_path_watcher_unittest.cc 805 bool ChangeFilePermissions(const FilePath& path, Permission perm, bool allow) {
812 switch (perm) {
823 ADD_FAILURE() << "unknown perm " << perm;
  /external/toybox/toys/pending/
tar.c 732 char perm[11]; local
735 mode_to_string(file_hdr->mode, perm);
736 printf("%s %s/%s %9ld %d-%02d-%02d %02d:%02d:%02d ",perm,file_hdr->uname,
  /external/python/cpython3/Lib/test/
test_ftplib.py 30 MLSD_DATA = ("type=cdir;perm=el;unique==keVO1+ZF4; test\r\n"
31 "type=pdir;perm=e;unique==keVO1+d?3; ..\r\n"
32 "type=OS.unix=slink:/foobar;perm=;unique==keVO1+4G4; foobar\r\n"
33 "type=OS.unix=chr-13/29;perm=;unique==keVO1+5G4; device\r\n"
34 "type=OS.unix=blk-11/108;perm=;unique==keVO1+6G4; block\r\n"
35 "type=file;perm=awr;unique==keVO1+8G4; writable\r\n"
36 "type=dir;perm=cpmel;unique==keVO1+7G4; promiscuous\r\n"
37 "type=dir;perm=;unique==keVO1+1t2; no-exec\r\n"
38 "type=file;perm=r;unique==keVO1+EG4; two words\r\n"
39 "type=file;perm=r;unique==keVO1+IH4; leading space\r\n
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
sparse_ops_test.py     [all...]
  /external/tensorflow/tensorflow/core/kernels/
sparse_matmul_op.cc 1047 const auto perm = dsizes_10(); variable
1091 const auto perm = dsizes_10(); local
    [all...]

Completed in 931 milliseconds

1 2 3 4 5 6 78 91011>>