HomeSort by relevance Sort by last modified time
    Searched refs:spec (Results 251 - 275 of 1158) sorted by null

<<11121314151617181920>>

  /external/selinux/libselinux/utils/
sefcontext_compile.c 17 struct spec *spec; local
71 spec = &data->spec_arr[data->nspec];
73 spec->lr.ctx_raw = context;
74 spec->mode = string_to_mode(mode);
75 if (spec->mode == (mode_t)-1) {
78 spec->mode = 0;
81 spec->regex_str = regex;
84 spec->stem_id = stem_id;
101 spec_hasMetaChars(spec);
    [all...]
  /external/lldb/source/API/
SBTypeCategory.cpp 154 SBTypeCategory::GetFilterForType (SBTypeNameSpecifier spec)
159 if (!spec.IsValid())
164 if (spec.IsRegex())
165 m_opaque_sp->GetRegexFilterNavigator()->GetExact(ConstString(spec.GetName()), children_sp);
167 m_opaque_sp->GetFilterNavigator()->GetExact(ConstString(spec.GetName()), children_sp);
178 SBTypeCategory::GetFormatForType (SBTypeNameSpecifier spec)
183 if (!spec.IsValid())
186 if (spec.IsRegex())
189 return SBTypeFormat(DataVisualization::ValueFormats::GetFormat(ConstString(spec.GetName())));
194 SBTypeCategory::GetSummaryForType (SBTypeNameSpecifier spec)
    [all...]
  /frameworks/base/core/java/android/view/
AccessibilityInteractionController.java 102 long interrogatingTid, MagnificationSpec spec) {
112 args.arg2 = spec;
137 final MagnificationSpec spec = (MagnificationSpec) args.arg2; local
161 applyAppScaleAndMagnificationSpecIfNeeded(infos, spec);
164 if (spec != null && android.os.Process.myPid() != Binder.getCallingPid()) {
165 spec.recycle();
185 long interrogatingTid, MagnificationSpec spec) {
194 args.arg2 = spec;
220 final MagnificationSpec spec = (MagnificationSpec) args.arg2; local
255 applyAppScaleAndMagnificationSpecIfNeeded(infos, spec);
312 final MagnificationSpec spec = (MagnificationSpec) args.arg3; local
434 final MagnificationSpec spec = (MagnificationSpec) args.arg2; local
554 final MagnificationSpec spec = (MagnificationSpec) args.arg2; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyPairGeneratorSpi.java 8 import java.security.spec.AlgorithmParameterSpec;
9 import java.security.spec.ECGenParameterSpec;
24 import org.bouncycastle.jce.spec.ECNamedCurveGenParameterSpec;
25 import org.bouncycastle.jce.spec.ECNamedCurveSpec;
26 import org.bouncycastle.jce.spec.ECParameterSpec;
139 else if (params instanceof java.security.spec.ECParameterSpec)
142 this.param = createKeyGenParamsJCE((java.security.spec.ECParameterSpec)params, random);
187 java.security.spec.ECParameterSpec p = (java.security.spec.ECParameterSpec)ecParams;
200 protected ECKeyGenerationParameters createKeyGenParamsJCE(java.security.spec.ECParameterSpec p, SecureRandom r
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
BCRSAPrivateCrtKey.java 6 import java.security.spec.RSAPrivateCrtKeySpec;
53 * @param spec the spec to be used in construction.
56 RSAPrivateCrtKeySpec spec)
58 this.modulus = spec.getModulus();
59 this.publicExponent = spec.getPublicExponent();
60 this.privateExponent = spec.getPrivateExponent();
61 this.primeP = spec.getPrimeP();
62 this.primeQ = spec.getPrimeQ();
63 this.primeExponentP = spec.getPrimeExponentP()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateCrtKey.java 6 import java.security.spec.RSAPrivateCrtKeySpec;
53 * @param spec the spec to be used in construction.
56 RSAPrivateCrtKeySpec spec)
58 this.modulus = spec.getModulus();
59 this.publicExponent = spec.getPublicExponent();
60 this.privateExponent = spec.getPrivateExponent();
61 this.primeP = spec.getPrimeP();
62 this.primeQ = spec.getPrimeQ();
63 this.primeExponentP = spec.getPrimeExponentP()
    [all...]
JCEDHPrivateKey.java 10 import javax.crypto.spec.DHParameterSpec;
11 import javax.crypto.spec.DHPrivateKeySpec;
52 DHPrivateKeySpec spec)
54 this.x = spec.getX();
55 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
JCEDHPublicKey.java 9 import javax.crypto.spec.DHParameterSpec;
10 import javax.crypto.spec.DHPublicKeySpec;
34 DHPublicKeySpec spec)
36 this.y = spec.getY();
37 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
  /external/libselinux/src/
label_android_property.c 17 typedef struct spec { struct
34 const struct spec *sp1 = A, *sp2 = B;
54 struct spec *curr_spec, *spec_arr = data->spec_arr;
112 /* On the second pass, process and store the specification in spec. */
177 * After the first pass, the spec array is malloced to the appropriate
178 * size. Second pass is to populate the spec array and check for
216 qsort(data->spec_arr, data->nspec, sizeof(struct spec), cmp);
230 struct spec *spec; local
234 spec = &data->spec_arr[i]
    [all...]
  /external/selinux/libselinux/src/
label_android_property.c 17 typedef struct spec { struct
34 const struct spec *sp1 = A, *sp2 = B;
54 struct spec *curr_spec, *spec_arr = data->spec_arr;
110 /* On the second pass, process and store the specification in spec. */
175 * After the first pass, the spec array is malloced to the appropriate
176 * size. Second pass is to populate the spec array and check for
213 qsort(data->spec_arr, data->nspec, sizeof(struct spec), cmp);
227 struct spec *spec; local
231 spec = &data->spec_arr[i]
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 269 * Assigns registers to locals. From the spec:
295 sourcePosition, local.spec(), RegisterSpecList.EMPTY, paramConstant));
389 RegisterSpecList.make(toThrow.spec()), catches));
481 addInstruction(new PlainCstInsn(rop, sourcePosition, target.spec(),
495 sourcePosition, target.spec(), source.spec()));
505 target.spec(), source.spec()));
516 RegisterSpecList sources = RegisterSpecList.make(a.spec(), b.spec());
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECPublicKeySpec_ImplTest.java 22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.ECFieldFp;
26 import java.security.spec.ECParameterSpec;
27 import java.security.spec.ECPoint;
28 import java.security.spec.ECPublicKeySpec;
29 import java.security.spec.EllipticCurve;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 10 import java.security.spec.InvalidKeySpecException;
11 import java.security.spec.PKCS8EncodedKeySpec;
12 import java.security.spec.X509EncodedKeySpec;
19 import javax.crypto.spec.IvParameterSpec;
20 import javax.crypto.spec.PBEParameterSpec;
22 // import javax.crypto.spec.RC2ParameterSpec;
23 // import javax.crypto.spec.RC5ParameterSpec;
25 import javax.crypto.spec.SecretKeySpec;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECNamedCurveSpec.java 1 package org.bouncycastle.jce.spec;
4 import java.security.spec.ECFieldF2m;
5 import java.security.spec.ECFieldFp;
6 import java.security.spec.ECPoint;
7 import java.security.spec.EllipticCurve;
17 extends java.security.spec.ECParameterSpec
  /external/deqp/scripts/egl/
proc_address_tests.py 79 spec = khr_util.registry.InterfaceSpec()
80 spec.addExtension(extension, api)
81 iface = khr_util.registry.createInterface(registry, spec, api)
103 spec = khr_util.registry.InterfaceSpec()
108 spec.addFeature(feature, api)
110 return khr_util.registry.createInterface(registry, spec, api)
library.py 41 spec = khr_util.registry.InterfaceSpec()
50 spec.addExtension(extension, api)
52 return khr_util.registry.createInterface(registry, spec, api)
  /external/mesa3d/src/mapi/glapi/gen/
remap_helper.py 48 spec = [sig]
50 spec.append("gl" + ent)
52 # spec is terminated by an empty string
53 spec.append('')
55 return spec
90 spec = get_function_spec(f)
103 for line in spec:
  /frameworks/base/keystore/java/android/security/
KeyPairGeneratorSpec.java 31 import java.security.spec.AlgorithmParameterSpec;
105 * @param spec the underlying key type parameters
116 AlgorithmParameterSpec spec, X500Principal subjectDN, BigInteger serialNumber,
142 mSpec = spec;
254 * This will build a parameter spec for use with the <a href="{@docRoot}
266 * KeyPairGeneratorSpec spec =
360 * this may be an instance of {@link java.security.spec.RSAKeyGenParameterSpec}.
362 public Builder setAlgorithmParameterSpec(@NonNull AlgorithmParameterSpec spec) {
363 if (spec == null) {
364 throw new NullPointerException("spec == null")
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpec2Test.java 18 package org.apache.harmony.security.tests.java.security.spec;
26 import java.security.spec.PKCS8EncodedKeySpec;
27 import java.security.spec.X509EncodedKeySpec;
34 * @tests java.security.spec.EncodedKeySpec#getEncoded()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
AlgorithmParametersSpi.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.DHParameterSpec;
81 throw new InvalidParameterSpecException("unknown parameter spec passed to DH parameters object.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
AlgorithmParametersSpi.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.DSAParameterSpec;
6 import java.security.spec.InvalidParameterSpecException;
77 throw new InvalidParameterSpecException("unknown parameter spec passed to DSA parameters object.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
PBEPKCS12.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.PBEParameterSpec;
61 throw new InvalidParameterSpecException("unknown parameter spec passed to PKCS12 PBE parameters object.");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
IvAlgorithmParameters.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.IvParameterSpec;
51 throw new InvalidParameterSpecException("unknown parameter spec passed to IV parameters object.");
  /libcore/luni/src/main/java/java/net/
URL.java 119 * Creates a new URL instance by parsing {@code spec}.
121 * @throws MalformedURLException if {@code spec} could not be parsed as a
124 public URL(String spec) throws MalformedURLException {
125 this((URL) null, spec, null);
129 * Creates a new URL by resolving {@code spec} relative to {@code context}.
131 * @param context the URL to which {@code spec} is relative, or null for
132 * no context in which case {@code spec} must be an absolute URL.
133 * @throws MalformedURLException if {@code spec} could not be parsed as a
136 public URL(URL context, String spec) throws MalformedURLException {
137 this(context, spec, null)
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
DHPrivateKeyTest.java 25 import javax.crypto.spec.DHParameterSpec;

Completed in 444 milliseconds

<<11121314151617181920>>