HomeSort by relevance Sort by last modified time
    Searched defs:perm (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /libcore/luni/src/main/java/java/security/
AccessControlException.java 28 private Permission perm; // Named as demanded by Serialized Form. field in class:AccessControlException
47 * @param perm
50 public AccessControlException(String message, Permission perm) {
52 this.perm = perm;
62 return perm;
  /external/openssh/
sftp-common.h 39 u_int32_t perm; member in struct:Attrib
  /frameworks/base/services/java/com/android/server/am/
UriPermissionOwner.java 69 for (UriPermission perm : readUriPermissions) {
70 perm.readOwners.remove(this);
71 if (perm.readOwners.size() == 0 && (perm.globalModeFlags
73 perm.modeFlags &= ~Intent.FLAG_GRANT_READ_URI_PERMISSION;
74 service.removeUriPermissionIfNeededLocked(perm);
81 for (UriPermission perm : writeUriPermissions) {
82 perm.writeOwners.remove(this);
83 if (perm.writeOwners.size() == 0 && (perm.globalModeFlag
98 UriPermission perm = it.next(); local
117 UriPermission perm = it.next(); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AccessControlExceptionTest.java 46 Permission perm = new AllPermission(); local
47 new AccessControlException("001", perm);
55 Permission perm = new UnresolvedPermission("unresolvedType", local
57 AccessControlException ex = new AccessControlException("001", perm);
58 assertSame(ex.getPermission(), perm); local
  /external/libsepol/src/
util.c 83 char *perm = NULL, *p; local
101 perm = v.name;
102 if (perm) {
105 perm);
avrule_block.c 181 perm_datum_t *perm; local
190 perm = hashtab_search(cladatum->permissions.table, perm_id);
191 if (perm == NULL && cladatum->comdatum != 0) {
194 perm =
198 if (perm == NULL) {
  /external/skia/legacy/src/ports/
SkOSFile_stdio.cpp 17 char perm[4]; local
18 char* p = perm;
27 SkFILE* f = (SkFILE*)::fopen(path, perm);
30 SkDebugf("sk_fopen failed for %s (%s), errno=%s\n", path, perm, strerror(errno));
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
AccessControlContextTest.java 37 final Permission perm = new PropertyPermission("java.class.path", local
39 PermissionCollection col = perm.newPermissionCollection();
40 col.add(perm);
45 acc.checkPermission(perm);
56 acc.checkPermission(perm);
  /external/skia/src/ports/
SkOSFile_stdio.cpp 26 char perm[4]; local
27 char* p = perm;
36 SkFILE* f = (SkFILE*)::fopen(path, perm);
39 SkDebugf("sk_fopen failed for %s (%s), errno=%s\n", path, perm, strerror(errno));
  /frameworks/base/services/java/com/android/server/pm/
BasePermission.java 39 PackageParser.Permission perm; field in class:BasePermission
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 48 permut_sparsematrix_product_retval(const PermutationType& perm, const MatrixType& matrix)
49 : m_permutation(perm), m_matrix(matrix)
82 PermutationMatrix<Dynamic,Dynamic,Index> perm; local
84 perm = m_permutation;
86 perm = m_permutation.transpose();
90 sizes[perm.indices().coeff(it.index())]++;
94 tmp.insertByOuterInner(perm.indices().coeff(it.index()),j) = it.value();
112 operator*(const SparseMatrixBase<SparseDerived>& matrix, const PermutationBase<PermDerived>& perm)
114 return internal::permut_sparsematrix_product_retval<PermutationBase<PermDerived>, SparseDerived, OnTheRight, false>(perm, matrix.derived());
121 operator*( const PermutationBase<PermDerived>& perm, const SparseMatrixBase<SparseDerived>& matrix
    [all...]
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 228 FileHandle::Permission perm = 0755; local
231 perm)) {
  /system/core/init/
ueventd.c 115 mode_t perm; local
157 perm = strtol(args[1], &endptr, 8);
180 add_dev_perms(name, attr, perm, uid, gid, prefix);
  /bionic/libc/kernel/common/linux/
moduleparam.h 47 unsigned int perm; member in struct:kernel_param
70 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
71 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
72 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
74 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
75 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /external/kernel-headers/original/linux/
moduleparam.h 38 unsigned int perm; member in struct:kernel_param
62 parameters. perm sets the visibility in driverfs: 000 means it's
65 #define __module_param_call(prefix, name, set, get, arg, perm) \
70 = { __param_str_##name, perm, set, get, arg }
72 #define module_param_call(name, set, get, arg, perm) \
73 __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
78 #define module_param_named(name, value, type, perm) \
80 module_param_call(name, param_set_##type, param_get_##type, &value, perm); \
83 #define module_param(name, type, perm) \
84 module_param_named(name, name, type, perm)
    [all...]
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 340 final String perm = Manifest.permission.ACCOUNT_MANAGER; local
341 if (mContext.checkCallingOrSelfPermission(perm) != PackageManager.PERMISSION_GRANTED) {
342 throw new SecurityException("caller uid " + uid + " lacks " + perm);
  /ndk/sources/android/libthread_db/gdb-6.6/
libthread_db.c 63 char* perm; local
87 perm = strstr(buff, "CapPrm:");
88 if (perm == NULL) {
97 *cap = (uint64_t) strtoull(perm+8, &end, 16);
102 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm);
  /ndk/sources/android/libthread_db/gdb-7.3.x/
libthread_db.c 59 char* perm; local
83 perm = strstr(buff, "CapPrm:");
84 if (perm == NULL) {
93 *cap = (uint64_t) strtoull(perm+8, &end, 16);
98 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
moduleparam.h 42 unsigned int perm; member in struct:kernel_param
63 #define __module_param_call(prefix, name, set, get, arg, perm) static char __param_str_##name[] = prefix #name; static struct kernel_param const __param_##name __attribute_used__ __attribute__ ((unused,__section__ ("__param"),aligned(sizeof(void *)))) = { __param_str_##name, perm, set, get, arg }
65 #define module_param_call(name, set, get, arg, perm) __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, param_get_##type, &value, perm); __MODULE_PARM_TYPE(name, #type)
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm)
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name (…)
    [all...]

Completed in 308 milliseconds

1 2 3 4 5