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

1 2

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLCipherRSA.java 153 private void engineInitInternal(int opmode, Key key) throws InvalidKeyException {
154 if (opmode == Cipher.ENCRYPT_MODE || opmode == Cipher.WRAP_MODE) {
156 } else if (opmode == Cipher.DECRYPT_MODE || opmode == Cipher.UNWRAP_MODE) {
159 throw new InvalidParameterException("Unsupported opmode " + opmode);
191 protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
192 engineInitInternal(opmode, key);
196 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params
    [all...]
OpenSSLCipher.java 222 private void engineInitInternal(int opmode, Key key, byte[] iv) throws InvalidKeyException, InvalidAlgorithmParameterException {
223 if (opmode == Cipher.ENCRYPT_MODE || opmode == Cipher.WRAP_MODE) {
225 } else if (opmode == Cipher.DECRYPT_MODE || opmode == Cipher.UNWRAP_MODE) {
228 throw new InvalidParameterException("Unsupported opmode " + opmode);
276 protected void engineInit(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
278 engineInitInternal(opmode, key, null);
285 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java 143 int opmode,
220 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
234 switch (opmode)
250 int opmode,
279 engineInit(opmode, key, paramSpec, random);
284 int opmode,
291 engineInit(opmode, key, (AlgorithmParameterSpec)null, random);
BaseWrapCipher.java 128 int opmode,
171 switch (opmode)
188 int opmode,
218 engineInit(opmode, key, paramSpec, random);
222 int opmode,
229 engineInit(opmode, key, (AlgorithmParameterSpec)null, random);
BaseBlockCipher.java 369 int opmode,
542 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
563 switch (opmode)
574 throw new InvalidParameterException("unknown opmode " + opmode + " passed");
584 int opmode,
613 engineInit(opmode, key, paramSpec, random);
619 int opmode,
626 engineInit(opmode, key, (AlgorithmParameterSpec)null, random)
    [all...]
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 81 protected void engineInit(int opmode, Key key, SecureRandom random)
86 protected void engineInit(int opmode, Key key,
92 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 82 protected void engineInit(int opmode, Key key, SecureRandom random)
87 protected void engineInit(int opmode, Key key,
93 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 450 * {@code opmode}.
462 * @param opmode
472 public final void init(int opmode, Key key) throws InvalidKeyException {
479 init(opmode, key, secureRandom);
488 * {@code opmode}.
500 * @param opmode
512 * if the specified opmode is invalid.
514 public final void init(int opmode, Key key, SecureRandom random) throws InvalidKeyException {
515 checkMode(opmode);
519 spiImpl.engineInit(opmode, key, random)
    [all...]
CipherSpi.java 161 * {@code opmode}.
173 * @param opmode
185 protected abstract void engineInit(int opmode, Key key, SecureRandom random)
194 * {@code opmode}.
205 * @param opmode
222 protected abstract void engineInit(int opmode, Key key,
232 * {@code opmode}.
243 * @param opmode
260 protected abstract void engineInit(int opmode, Key key,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 245 int opmode,
257 if (privateKeyOnly && opmode == Cipher.ENCRYPT_MODE)
267 if (publicKeyOnly && opmode == Cipher.ENCRYPT_MODE)
333 switch (opmode)
344 throw new InvalidParameterException("unknown opmode " + opmode + " passed to RSA");
349 int opmode,
370 engineInit(opmode, key, paramSpec, random);
374 int opmode,
381 engineInit(opmode, key, (AlgorithmParameterSpec)null, random)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 83 protected void engineInit(int opmode, Key key, SecureRandom random)
85 super.engineInit(opmode, key, random);
89 protected void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
91 super.engineInit(opmode, key, params, random);
95 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
97 super.engineInit(opmode, key, params, random);
340 protected void engineInit(int opmode, Key key, SecureRandom random)
344 protected void engineInit(int opmode, Key key,
349 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /libcore/luni/src/main/java/org/apache/harmony/crypto/internal/
NullCipherSpi.java 76 public void engineInit(int opmode, Key key, SecureRandom random)
82 public void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
89 public void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 170 int opmode,
247 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
261 switch (opmode)
277 int opmode,
306 engineInit(opmode, key, paramSpec, random);
311 int opmode,
318 engineInit(opmode, key, (AlgorithmParameterSpec)null, random);
JCEBlockCipher.java 384 int opmode,
559 if ((opmode == Cipher.ENCRYPT_MODE) || (opmode == Cipher.WRAP_MODE))
580 switch (opmode)
591 throw new InvalidParameterException("unknown opmode " + opmode + " passed");
601 int opmode,
630 engineInit(opmode, key, paramSpec, random);
636 int opmode,
643 engineInit(opmode, key, (AlgorithmParameterSpec)null, random)
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_SmtCrdFmt.c 276 switch ( NdefSmtCrdFmt->psRemoteDevInfo->OpMode )
329 info - opmode says its a Mifare card but,
358 info - opmode says its a desfire card but,
387 info - opmode says its a desfire card but,
396 /*Set the OpMode Ttype Flag*/
433 switch ( NdefSmtCrdFmt->psRemoteDevInfo->OpMode )
507 /* Remote device opmode not recognised.
phFriNfc_NdefMap.c 748 * Description: Opmode replace with RemDevType.
796 info - opmode says its a Mifare UL card but,
824 info - opmode says its a desfire card but,
833 /*Set the OpMode Type Flag*/
850 /*Set the OpMode Ttype Flag*/
    [all...]
phFriNfc_OvrHalCmd.h 132 phHal_eOpModes_t OpMode;
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_dual_test.c 318 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n", __func__, cam_id, MM_CAMERA_OP_MODE_NOTUSED, i, rc);
328 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n", __func__, cam_id, MM_CAMERA_OP_MODE_NOTUSED, i, rc);
348 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
359 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
377 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
402 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
419 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
452 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
469 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
514 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
    [all...]
mm_qcamera_unit_test.c 312 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n", __func__, cam_id, MM_CAMERA_OP_MODE_NOTUSED, i, rc);
322 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n", __func__, cam_id, MM_CAMERA_OP_MODE_NOTUSED, i, rc);
342 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
353 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
371 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
396 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
413 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
446 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
463 CDBG("%s: open cam %d at opmode = %d err, loop=%d, rc=%d\n",
508 CDBG("%s: close cam %d at opmode = %d err,loop=%d, rc=%d\n",
    [all...]
  /external/qemu/hw/
dma.c 231 int op, ai, dir, opmode; local
235 opmode = (data >> 6) & 3;
237 linfo ("ichan %d, op %d, ai %d, dir %d, opmode %d\n",
238 ichan, op, ai, dir, opmode);
334 int dir, opmode; local
337 opmode = (r->mode >> 6) & 3;
342 if (opmode != 1) {
343 dolog ("DMA not in single mode select %#x\n", opmode);
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherSpiTest.java 254 protected void engineInit(int opmode, Key key, SecureRandom random)
258 protected void engineInit(int opmode, Key key,
263 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/mksh/src/
tree.c 294 wdvarput(struct shf *shf, const char *wp, int quotelevel, int opmode)
316 if ((opmode & WDS_MAGIC) &&
327 if (opmode & WDS_TPUTS) {
331 if (!(opmode & WDS_KEEPQ))
356 if (opmode & WDS_TPUTS) {
362 if (opmode & WDS_TPUTS) {
374 wp = wdvarput(shf, wp, 0, opmode);
381 if (opmode & WDS_MAGIC) {
394 if (opmode & WDS_MAGIC)
632 wdstrip(const char *wp, int opmode)
    [all...]
  /external/bzip2/
bzip2.c 199 Int32 opMode;
693 && opMode != OM_TEST
818 if (opMode == OM_Z)
864 if (opMode == OM_Z)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
matrox_regs.h 114 /* OPMODE register additives */
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11.h 2935 uint16 opmode; \/* operation mode *\/ member in struct:ht_add_ie
    [all...]

Completed in 867 milliseconds

1 2