HomeSort by relevance Sort by last modified time
    Searched full:protected (Results 51 - 75 of 7030) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 27 protected void setUp() throws Exception {
31 protected void tearDown() throws Exception {
157 protected AlgorithmParameters engineGetParameters() {
168 protected Object engineGetParameter(String param)
174 protected void engineInitSign(PrivateKey privateKey)
180 protected void engineInitVerify(PublicKey publicKey)
186 protected void engineSetParameter(String param, Object value)
192 protected byte[] engineSign() throws SignatureException {
197 protected void engineUpdate(byte b) throws SignatureException {
202 protected void engineUpdate(byte[] b, int off, int len
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
SocketImplFactoryTest.java 144 protected void accept(SocketImpl arg0) throws IOException {
149 protected int available() throws IOException {
154 protected void bind(InetAddress arg0, int arg1) throws IOException {
159 protected void close() throws IOException {
164 protected void connect(String arg0, int arg1) throws IOException {
169 protected void connect(InetAddress arg0, int arg1) throws IOException {
174 protected void connect(SocketAddress arg0, int arg1) throws IOException {
179 protected void create(boolean arg0) throws IOException {
184 protected InputStream getInputStream() throws IOException {
189 protected OutputStream getOutputStream() throws IOException
    [all...]
  /frameworks/base/media/libdrm/mobile2/include/
Drm2CommonTypes.h 21 #define PROTECTED public
24 #define PROTECTED protected
  /packages/apps/Email/tests/src/com/android/email/
AccountTestCase.java 39 protected static final String TEST_ACCOUNT_PREFIX = "__test";
40 protected static final String TEST_ACCOUNT_SUFFIX = "@android.com";
46 protected android.accounts.Account[] getExchangeAccounts() {
51 protected android.accounts.Account makeAccountManagerAccount(String username) {
55 protected void createAccountManagerAccount(String username) {
60 protected Account setupProviderAndAccountManagerAccount(String username) {
67 protected ArrayList<Account> makeSyncManagerAccountList() {
81 protected void deleteAccountManagerAccount(android.accounts.Account account) {
92 protected void deleteTemporaryAccountManagerAccounts() {
101 protected String getTestAccountName(String name)
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/support/
MyKeyAgreementSpi.java 45 protected Key engineDoPhase(Key key, boolean lastPhase)
54 protected byte[] engineGenerateSecret() throws IllegalStateException {
59 protected int engineGenerateSecret(byte[] sharedSecret, int offset)
65 protected SecretKey engineGenerateSecret(String algorithm)
75 protected void engineInit(Key key, SecureRandom random)
81 protected void engineInit(Key key, AlgorithmParameterSpec params,
MyMacSpi.java 42 protected int engineGetMacLength() {
47 protected void engineInit(Key key, AlgorithmParameterSpec params)
57 protected void engineUpdate(byte input) {
61 protected void engineUpdate(byte[] input, int offset, int len) {
68 protected byte[] engineDoFinal() {
73 protected void engineReset() {
MyKeyGeneratorSpi.java 41 protected SecretKey engineGenerateKey() {
46 protected void engineInit(AlgorithmParameterSpec params, SecureRandom random)
54 protected void engineInit(int keysize, SecureRandom random) {
61 protected void engineInit(SecureRandom random) {
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
WrapCipherSpi.java 61 protected int pbeType = PKCS12;
62 protected int pbeHash = SHA1;
63 protected int pbeKeySize;
64 protected int pbeIvSize;
66 protected AlgorithmParameters engineParams = null;
68 protected Wrapper wrapEngine = null;
70 protected WrapCipherSpi()
74 protected WrapCipherSpi(
80 protected int engineGetBlockSize()
85 protected byte[] engineGetIV(
    [all...]
CertPathValidatorUtilities.java 46 protected static final String CERTIFICATE_POLICIES = X509Extensions.CertificatePolicies.getId();
47 protected static final String BASIC_CONSTRAINTS = X509Extensions.BasicConstraints.getId();
48 protected static final String POLICY_MAPPINGS = X509Extensions.PolicyMappings.getId();
49 protected static final String SUBJECT_ALTERNATIVE_NAME = X509Extensions.SubjectAlternativeName.getId();
50 protected static final String NAME_CONSTRAINTS = X509Extensions.NameConstraints.getId();
51 protected static final String KEY_USAGE = X509Extensions.KeyUsage.getId();
52 protected static final String INHIBIT_ANY_POLICY = X509Extensions.InhibitAnyPolicy.getId();
53 protected static final String ISSUING_DISTRIBUTION_POINT = X509Extensions.IssuingDistributionPoint.getId();
54 protected static final String DELTA_CRL_INDICATOR = X509Extensions.DeltaCRLIndicator.getId();
55 protected static final String POLICY_CONSTRAINTS = X509Extensions.PolicyConstraints.getId()
    [all...]
JDKAlgorithmParameterGenerator.java 33 protected SecureRandom random;
34 protected int strength = 1024;
36 protected void engineInit(
49 protected void engineInit(
65 protected AlgorithmParameters engineGenerateParameters()
99 protected void engineInit(
107 protected AlgorithmParameters engineGenerateParameters()
142 // protected void engineInit(
150 // protected AlgorithmParameters engineGenerateParameters()
186 // protected void engineInit
    [all...]
JDKAlgorithmParameters.java 60 protected byte[] engineGetEncoded()
66 protected byte[] engineGetEncoded(
90 protected AlgorithmParameterSpec engineGetParameterSpec(
102 protected void engineInit(
114 protected void engineInit(
135 protected void engineInit(
166 protected String engineToString()
178 // protected byte[] engineGetEncoded()
184 // protected byte[] engineGetEncoded(
208 // protected AlgorithmParameterSpec engineGetParameterSpec
    [all...]
  /dalvik/libcore/support/src/test/java/tests/resources/
hyts_security.jar 
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
CipherKeyGenerator.java 10 protected SecureRandom random;
11 protected int strength;
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature1.java 66 protected void engineInitVerify(PublicKey publicKey)
71 protected void engineInitSign(PrivateKey privateKey)
76 protected void engineUpdate(byte b) throws SignatureException {
80 protected void engineUpdate(byte[] b, int off, int len)
92 protected byte[] engineSign() throws SignatureException {
98 protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
103 protected void engineSetParameter(String param, Object value)
108 protected Object engineGetParameter(String param)
  /external/junit/src/junit/swingui/
ProgressBar.java 18 protected Color getStatusColor() {
43 protected void updateBarColor() {
  /external/skia/src/animator/
SkMatrixParts.h 42 protected:
49 protected:
58 protected:
68 protected:
78 protected:
88 protected:
104 protected:
119 protected:
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplication.java 64 protected void checkThread() {
71 protected void close() {
113 protected Config createConfig() {
129 protected Corpora createCorpora() {
136 protected Sources createSources() {
140 protected CorpusFactory createCorpusFactory() {
145 protected Factory<Executor> createExecutorFactory(final int numThreads) {
166 protected CorpusRanker createCorpusRanker() {
182 protected ShortcutRepository createShortcutRepository() {
202 protected ShortcutRefresher createShortcutRefresher()
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 56 protected byte[] engineDoFinal(byte[] input, int inputOffset, int inputLen)
62 protected int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
69 protected int engineGetBlockSize() {
74 protected byte[] engineGetIV() {
79 protected int engineGetOutputSize(int inputLen) {
84 protected AlgorithmParameters engineGetParameters() {
89 protected void engineInit(int opmode, Key key, SecureRandom random)
95 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
101 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
107 protected void engineSetMode(String mode) throws NoSuchAlgorithmException
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccFileHandler.java 29 static protected final int COMMAND_READ_BINARY = 0xb0;
30 static protected final int COMMAND_UPDATE_BINARY = 0xd6;
31 static protected final int COMMAND_READ_RECORD = 0xb2;
32 static protected final int COMMAND_UPDATE_RECORD = 0xdc;
33 static protected final int COMMAND_SEEK = 0xa2;
34 static protected final int COMMAND_GET_RESPONSE = 0xc0;
37 static protected final int READ_RECORD_MODE_ABSOLUTE = 4;
40 static protected final int EF_TYPE_TRANSPARENT = 0;
41 static protected final int EF_TYPE_LINEAR_FIXED = 1;
42 static protected final int EF_TYPE_CYCLIC = 3
    [all...]
  /external/emma/core/java12/com/vladium/emma/
Command.java 60 // protected: .............................................................
63 protected Command (final String usageToolName, final String [] args)
69 protected abstract String usageArgsMsg ();
72 protected void initialize ()
80 protected final String getToolName ()
88 protected final IOptsParser getOptParser (final ClassLoader loader)
94 protected final boolean processOpt (final IOptsParser.IOpt opt)
141 protected final void processCmdPropertyOverrides (final IOptsParser.IOpts parsedopts)
163 protected final boolean processFilePropertyOverrides ()
186 protected final void usageexit (final IOptsParser parser, final int level, final String msg
    [all...]
  /cts/tests/src/android/app/cts/
TestedActivity.java 32 protected void onRestoreInstanceState(Bundle state) {
36 protected void onResume() {
42 protected void onSaveInstanceState(Bundle outState) {
46 protected void onStop() {
  /dalvik/dx/src/junit/runner/
ReloadingTestSuiteLoader.java 16 protected TestCaseClassLoader createLoader() {
SimpleTestCollector.java 14 protected boolean isTestClass(String classFileName) {
  /dalvik/libcore/luni/src/test/java/junit/runner/
ReloadingTestSuiteLoader.java 16 protected TestCaseClassLoader createLoader() {
SimpleTestCollector.java 14 protected boolean isTestClass(String classFileName) {

Completed in 6138 milliseconds

1 23 4 5 6 7 8 91011>>