HomeSort by relevance Sort by last modified time
    Searched full:policy (Results 1 - 25 of 1619) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/support/src/test/java/tests/resources/
Created_by_1_4.jar 
  /external/bluetooth/bluez/src/
bluetooth.conf 10 <policy user="root">
14 </policy>
16 <policy at_console="true">
18 </policy>
20 <policy context="default">
22 </policy>
  /external/dnsmasq/dbus/
dnsmasq.conf 5 <policy user="root">
8 </policy>
9 <policy context="default">
12 </policy>
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
PolicyTest.java 44 import java.security.Policy;
52 @TestTargetClass(Policy.class)
54 * Tests for <code>Policy</code>
58 public static final String JAVA_SECURITY_POLICY = "java.security.policy";
70 * @tests constructor Policy()
77 method = "Policy",
98 assertTrue(tp instanceof Policy);
114 * @tests java.security.Policy#setPolicy(java.security.Policy)
121 args = {java.security.Policy.class
224 TestProvider policy = new TestProvider(); local
310 Policy policy = Policy.getPolicy(); local
    [all...]
  /frameworks/policies/base/phone/com/android/internal/policy/impl/
Policy.java 17 package com.android.internal.policy.impl;
22 import com.android.internal.policy.IPolicy;
23 import com.android.internal.policy.impl.PhoneLayoutInflater;
24 import com.android.internal.policy.impl.PhoneWindow;
25 import com.android.internal.policy.impl.PhoneWindowManager;
31 // Simple implementation of the policy interface that spawns the right
33 public class Policy implements IPolicy {
37 "com.android.internal.policy.impl.PhoneLayoutInflater",
38 "com.android.internal.policy.impl.PhoneWindow",
39 "com.android.internal.policy.impl.PhoneWindow$1"
    [all...]
  /external/dbus/bus/
policy.c 2 /* policy.c Bus security policy
24 #include "policy.h"
128 DBusList *default_rules; /**< Default policy rules */
129 DBusList *mandatory_rules; /**< Mandatory policy rules */
130 DBusHashTable *rules_by_uid; /**< per-UID policy rules */
131 DBusHashTable *rules_by_gid; /**< per-GID policy rules */
132 DBusList *at_console_true_rules; /**< console user policy rules where at_console="true"*/
133 DBusList *at_console_false_rules; /**< console user policy rules where at_console="false"*/
163 BusPolicy *policy; local
689 BusClientPolicy *policy; local
    [all...]
policy.h 2 /* policy.h Bus security policy
110 BusPolicy* bus_policy_ref (BusPolicy *policy);
111 void bus_policy_unref (BusPolicy *policy);
112 BusClientPolicy* bus_policy_create_client_policy (BusPolicy *policy,
115 dbus_bool_t bus_policy_allow_user (BusPolicy *policy,
118 dbus_bool_t bus_policy_append_default_rule (BusPolicy *policy,
120 dbus_bool_t bus_policy_append_mandatory_rule (BusPolicy *policy,
122 dbus_bool_t bus_policy_append_user_rule (BusPolicy *policy,
125 dbus_bool_t bus_policy_append_group_rule (BusPolicy *policy,
    [all...]
  /external/wpa_supplicant/
dbus-wpa_supplicant.conf 5 <policy user="root">
10 </policy>
11 <policy context="default">
15 </policy>
  /external/wpa_supplicant_6/wpa_supplicant/
dbus-wpa_supplicant.conf 5 <policy user="root">
10 </policy>
11 <policy context="default">
15 </policy>
  /dalvik/libcore/security/src/main/java/java/security/
Policy.java 27 * {@code Policy} is the common super type of classes which represent a system
28 * security policy. The {@code Policy} specifies which permissions apply to
31 * The system policy can be changed by setting the {@code 'policy.provider'}
33 * the fully qualified class name of the desired {@code Policy}.
35 * Only one instance of a {@code Policy} is active at any time.
37 public abstract class Policy {
39 // Key to security properties, defining default policy provider.
40 private static final String POLICY_PROVIDER = "policy.provider"; //$NON-NLS-1
    [all...]
security.properties 47 # Class to instantiate as the default system Policy.
49 # See specification for java.security.Policy class.
50 policy.provider=org.apache.harmony.security.fortress.DefaultPolicy
53 # The default is to have a single system-wide policy file,
54 # and an optional policy file in the user's home directory.
55 # It is possible to specify any number of policy files, via policy.url.n keys.
56 # See also: "JavaTM 2 Platform Security Architecture.", chapter 3. Permissions and Security Policy
57 policy.url.1=file:/${java.home}/lib/security/java.policy
    [all...]
  /external/openssl/crypto/x509v3/
v3_pci.c 69 if (pci->proxyPolicy->policy && pci->proxyPolicy->policy->data)
71 pci->proxyPolicy->policy->data);
77 ASN1_OCTET_STRING **policy)
111 else if (strcmp(val->name, "policy") == 0)
115 if (!*policy)
117 *policy = ASN1_OCTET_STRING_new();
118 if (!*policy)
133 tmp_data = OPENSSL_realloc((*policy)->data,
134 (*policy)->length + val_len + 1)
224 ASN1_OCTET_STRING *policy = NULL; local
    [all...]
  /external/dbus/test/data/valid-config-files/system.d/
test.conf 5 policy so that a particular user can own a service, and other
10 <policy user="root">
13 </policy>
17 <policy context="default">
19 </policy>
  /frameworks/policies/base/mid/com/android/internal/policy/impl/
Policy.java 17 package com.android.internal.policy.impl;
21 import com.android.internal.policy.IPolicy;
22 import com.android.internal.policy.impl.MidLayoutInflater;
23 import com.android.internal.policy.impl.MidWindow;
24 import com.android.internal.policy.impl.MidWindowManager;
30 // Simple implementation of the policy interface that spawns the right
32 public class Policy implements IPolicy {
  /dalvik/libcore/security/src/main/java/java/security/cert/
PolicyNode.java 24 * The interface to a valid policy tree node for the PKIX certification path
40 * Returns the depth of this node in the policy tree.
44 * @return the depth of this node in the policy tree.
56 * Returns the parent policy node.
58 * @return the parent policy node.
63 * Returns the policy qualifiers associated with the policy of this node.
65 * @return the policy qualifiers associated with the policy of this node.
70 * Returns the valid policy of this node
    [all...]
  /dalvik/libcore/security/src/test/java/tests/security/permissions/
JavaSecurityPolicyTest.java 27 import java.security.Policy;
32 * for class java.security.Policy
34 @TestTargetClass(java.security.Policy.class)
53 notes = "Verifies that java.security.Policy.getPolicy() method calls checkPermission on security manager.",
74 Policy.getPolicy();
75 assertTrue("java.security.Policy.getPolicy() must call checkPermission on security permissions", s.called);
80 notes = "Verifies that java.security.Policy.setPolicy() method calls checkPermission on security manager.",
82 args = {java.security.Policy.class}
98 Policy p = Policy.getPolicy()
    [all...]
  /external/dbus/test/data/equiv-config-files/basic/basic.d/
basic.conf 10 <policy context="default">
12 </policy>
  /external/dbus/test/data/equiv-config-files/entities/basic.d/
basic.conf 10 <policy context="default">
12 </policy>
  /external/dbus/test/data/valid-config-files/basic.d/
basic.conf 10 <policy context="default">
12 </policy>
  /external/iptables/extensions/
libip6t_policy.man 1 This modules matches the policy used by IPsec for handling a packet.
4 Used to select whether to match the policy used for decapsulation or the
5 policy that will be used for encapsulation.
19 Selects whether to match the exact policy or match if any rule of
20 the policy matches the given policy.
23 Matches the reqid of the policy rule. The reqid can be specified with
47 Start the next element in the policy specification. Can only be used with
libipt_policy.man 1 This modules matches the policy used by IPsec for handling a packet.
4 Used to select whether to match the policy used for decapsulation or the
5 policy that will be used for encapsulation.
19 Selects whether to match the exact policy or match if any rule of
20 the policy matches the given policy.
23 Matches the reqid of the policy rule. The reqid can be specified with
47 Start the next element in the policy specification. Can only be used with
libipt_policy.c 1 /* Shared library add-on to iptables to add policy support. */
27 "policy v%s options:\n"
28 " --dir in|out match policy applied during decapsulation/\n"
29 " policy to be applied during encapsulation\n"
30 " --pol none|ipsec match policy\n"
31 " --strict match entire policy instead of single element\n"
39 " --next begin next element in policy\n",
116 exit_error(PARAMETER_PROBLEM, "policy match: invalid policy `%s'", s);
125 exit_error(PARAMETER_PROBLEM, "policy match: invalid mode `%s'", s)
419 struct iptables_match policy = { variable in typeref:struct:iptables_match
    [all...]
  /external/ipsec-tools/src/libipsec/
Makefile.am 2 #bin_PROGRAMS = test-policy test-policy-priority
33 #test_policy_SOURCES = test-policy.c
36 #test_policy_priority_SOURCES = test-policy-priority.c
39 EXTRA_DIST = ${man3_MANS} test-policy.c
ipsec_set_policy.3 39 .Nd manipulate IPsec policy specification structure from human-readable policy string
46 .Fn ipsec_set_policy "char *policy" "int len"
53 generates an IPsec policy specification structure, namely
57 from a human-readable policy specification.
58 The policy specification must be given as a C string
59 .Fa policy
63 will return a buffer with the corresponding IPsec policy specification structure.
74 converts an IPsec policy structure into human-readable form.
80 points to an IPsec policy structure
    [all...]
  /external/dbus/doc/
busconfig.dtd 10 policy |
29 <!ELEMENT policy (allow|deny)*>
30 <!ATTLIST policy

Completed in 137 milliseconds

1 2 3 4 5 6 7 8 91011>>