/libcore/luni/src/main/java/javax/crypto/ |
Cipher.java | 49 * <li><i>"algorithm/mode/padding"</i></li> or 52 * <i>algorithm</i> is the name of a cryptographic algorithm, <i>mode</i> is the 53 * name of a feedback mode and <i>padding</i> is the name of a padding scheme. 54 * If <i>mode</i> and/or <i>padding</i> values are omitted, provider specific 61 * When a block cipher is requested in stream cipher mode, the number of bits 63 * mode name. e.g. <i>"AES/CFB8/NoPadding"</i>. If no number is specified, a 69 * Constant for decryption operation mode. 74 * Constant for encryption operation mode. 94 * Constant for key unwrapping operation mode. 99 * Constant for key wrapping operation mode 103 private int mode; field in class:Cipher [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
evp_locl.h | 61 /* Wrapper functions for each cipher mode */ 133 #define BLOCK_CIPHER_def1(cname, nmode, mode, MODE, kstruct, nid, block_size, \ 136 static const EVP_CIPHER cname##_##mode = { \ 138 flags | EVP_CIPH_##MODE##_MODE, \ 140 cname##_##mode##_cipher, \ 147 const EVP_CIPHER *EVP_##cname##_##mode(void) { return &cname##_##mode; }
|
/external/openssl/crypto/evp/ |
evp_locl.h | 61 /* Wrapper functions for each cipher mode */ 133 #define BLOCK_CIPHER_def1(cname, nmode, mode, MODE, kstruct, nid, block_size, \ 136 static const EVP_CIPHER cname##_##mode = { \ 138 flags | EVP_CIPH_##MODE##_MODE, \ 140 cname##_##mode##_cipher, \ 147 const EVP_CIPHER *EVP_##cname##_##mode(void) { return &cname##_##mode; }
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
RecentsProvider.java | 87 public static final String MODE = "mode"; 141 StateColumns.MODE + " INTEGER," +
|
DirectoryLoader.java | 53 int mode = MODE_UNKNOWN; field in class:DirectoryResult 126 userMode = getCursorInt(cursor, StateColumns.MODE); 133 result.mode = userMode; 136 result.mode = State.MODE_GRID; 138 result.mode = State.MODE_LIST; 157 Log.d(TAG, "userMode=" + userMode + ", userSortOrder=" + mUserSortOrder + " --> mode=" 158 + result.mode + ", sortOrder=" + result.sortOrder);
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
jsbundler.py | 300 parser.add_option('-m', '--mode', type='choice', action='store', 303 default='list', metavar='MODE', 304 help=("Otput mode. One of 'list', 'html', 'bundle', " + 317 will_output_source_text = options.mode in ('bundle', 'compressed_bundle') 328 if options.mode == 'copy': 338 WriteOutput(bundle, options.mode, out_file, options.dest_dir)
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
r600_texture.c | 97 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_1D, MODE); 100 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_2D, MODE); 103 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR_ALIGNED, MODE); 107 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR, MODE); 230 surface->level[0].mode >= RADEON_SURF_MODE_1D ? 232 surface->level[0].mode >= RADEON_SURF_MODE_2D ? 283 if (rtex->surface.level[level].mode != RADEON_SURF_MODE_LINEAR_ALIGNED && 284 rtex->surface.level[level].mode != RADEON_SURF_MODE_LINEAR)
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
r600_texture.c | 97 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_1D, MODE); 100 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_2D, MODE); 103 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR_ALIGNED, MODE); 107 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR, MODE); 230 surface->level[0].mode >= RADEON_SURF_MODE_1D ? 232 surface->level[0].mode >= RADEON_SURF_MODE_2D ? 283 if (rtex->surface.level[level].mode != RADEON_SURF_MODE_LINEAR_ALIGNED && 284 rtex->surface.level[level].mode != RADEON_SURF_MODE_LINEAR)
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/ |
GeneralPrefsFragment.java | 175 SuggestionsProvider.MODE);
|
/external/chromium_org/v8/ |
Makefile | 205 # - any mode listed in MODES 206 # - every combination <arch>.<mode>, e.g. "ia32.release" 207 # - "native": current host's architecture, release mode 237 BUILDS = $(foreach mode,$(MODES),$(addsuffix .$(mode),$(ARCHES))) 238 ANDROID_BUILDS = $(foreach mode,$(MODES), \ 239 $(addsuffix .$(mode),$(ANDROID_ARCHES))) 240 NACL_BUILDS = $(foreach mode,$(MODES), \ 241 $(addsuffix .$(mode),$(NACL_ARCHES))) 295 MODE="$(subst .,,$(suffix $@))" [all...] |
/external/qemu/android/ |
hw-events.h | 318 KEY_CODE(MODE ,0x175) \ 454 BTN_CODE(MODE, 0x13c) \
|
/external/chromium_org/third_party/icu/source/tools/pkgdata/ |
pkgdata.cpp | 108 static int32_t pkg_createWindowsDLL(const char mode, const char *gencFilePath, UPKGOptions *o); 116 static int32_t pkg_createWithoutAssemblyCode(UPKGOptions *o, const char *targetDir, const char mode); 119 static int32_t pkg_createWithAssemblyCode(const char *targetDir, const char mode, const char *gencFilePath); 120 static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, const char *objectFile, char *command = NULL); 122 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt); 131 MODE, 171 /*02*/ UOPTION_DEF( "mode", 'm', UOPT_REQUIRES_ARG), 233 "Specify the mode of building (see below; default: common)", 245 "Specify a version when packaging in dll or static mode", 248 "Quite mode. (e.g. Do not output a readme file for static libraries) 531 const char mode = o->mode[0]; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_texture.c | 107 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_1D, MODE); 110 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_2D, MODE); 113 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR_ALIGNED, MODE); 117 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR, MODE); 186 switch (rtex->surface.level[i].mode) { 216 surface->level[0].mode >= RADEON_SURF_MODE_1D ? 218 surface->level[0].mode >= RADEON_SURF_MODE_2D ? 300 assert(fmask.level[0].mode == RADEON_SURF_MODE_2D); [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
r600_texture.c | 107 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_1D, MODE); 110 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_2D, MODE); 113 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR_ALIGNED, MODE); 117 surface->flags |= RADEON_SURF_SET(RADEON_SURF_MODE_LINEAR, MODE); 186 switch (rtex->surface.level[i].mode) { 216 surface->level[0].mode >= RADEON_SURF_MODE_1D ? 218 surface->level[0].mode >= RADEON_SURF_MODE_2D ? 300 assert(fmask.level[0].mode == RADEON_SURF_MODE_2D); [all...] |
/frameworks/base/core/tests/coretests/src/android/provider/ |
SearchRecentSuggestionsProviderTest.java | 56 TestProvider.AUTHORITY, TestProvider.MODE);
|
/external/icu/icu4c/source/tools/pkgdata/ |
pkgdata.cpp | 64 static int32_t pkg_createWindowsDLL(const char mode, const char *gencFilePath, UPKGOptions *o); 72 static int32_t pkg_createWithoutAssemblyCode(UPKGOptions *o, const char *targetDir, const char mode); 75 static int32_t pkg_createWithAssemblyCode(const char *targetDir, const char mode, const char *gencFilePath); 76 static int32_t pkg_generateLibraryFile(const char *targetDir, const char mode, const char *objectFile, char *command = NULL, UBool specialHandling=FALSE); 78 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt, UBool noVersion); 84 #define IN_COMMON_MODE(mode) (mode == 'a' || mode == 'c') 85 #define IN_DLL_MODE(mode) (mode == 'd' || mode == 'l' 541 const char mode = o->mode[0]; local [all...] |
/hardware/samsung_slsi/exynos5/include/ |
ExynosCamera.h | 237 //! Flash mode 246 //! Focus mode 258 //! Scene mode 434 //! Gets the current flash mode setting. 446 //! Gets the current focus mode setting. 504 //! Gets scene mode 602 //! Sets the flash mode. 611 //! Sets the focus mode. 664 //! Sets recording mode hint. 673 //! Sets the scene mode [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
GeneralPreferences.java | 411 CalendarRecentSuggestionsProvider.MODE);
|
SearchActivity.java | 216 CalendarRecentSuggestionsProvider.MODE);
|
/external/iproute2/doc/ |
ip-tunnels.tex | 34 ip tunnel add MY-TUNNEL mode ipip remote 193.233.7.65 148 Mode & Description & Base device \\ 158 ip tunnel add <NAME> mode <MODE> [ local <S> ] [ remote <D> ] 169 \verb|mode <MODE>| sets tunnel mode. Three modes are available now 184 say that they are zero or wildcard. Two tunnels of one mode cannot 301 ip tunnel change Cisco mode sit local ME remote HE ttl 32 352 tunnel mode gre i [all...] |
/external/blktrace/btt/doc/ |
btt.tex | 74 btt does not work in live mode. 240 IOs, the \emph{median} value for all seeks, and the \emph{mode} - 250 DEV | NSEEKS MEAN MEDIAN | MODE 255 We have almost exclusively seen median and mode values of 0, indicating 257 seeks. The larger the count for the mode in comparison to the total [all...] |
/external/chromium_org/third_party/lcov/bin/ |
geninfo | 91 # Compatibility mode values 96 # Compatibility mode value names 108 # Compatibility mode names 123 # Compatibility mode default values 130 # Compatibility mode auto-detection routines 456 # Determine checksum mode 580 --(no-)compat-libtool Enable (disable) libtool compatibility mode 589 --compat MODE=on|off|auto Set compat MODE (libtool, hammer, split_crc) [all...] |
lcov | 170 our $compat_libtool; # If set, indicates that libtool mode is to be enabled 171 our $no_compat_libtool; # If set, indicates that libtool mode is to be disabled 525 --(no-)compat-libtool Enable (disable) libtool compatibility mode 537 --compat MODE=on|off|auto Set compat MODE (libtool, hammer, split_crc) [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/ |
vp9_cx_iface.c | 191 // automatic keyframe placement mode. 195 ERROR("kf_min_dist not supported in auto mode, use 0 " 309 oxcf->mode = ONE_PASS_GOOD; 312 oxcf->mode = TWO_PASS_FIRST; 315 oxcf->mode = TWO_PASS_SECOND_BEST; 411 printf("Mode: %d\n", oxcf->mode); 601 // Use best quality mode if no deadline is given. 602 MODE new_qc = ONE_PASS_BEST; 611 // use good quality mode. Otherwise use realtime mode 1019 vpx_scaling_mode_t *const mode = va_arg(args, vpx_scaling_mode_t *); local [all...] |
/external/libvpx/libvpx/vp9/ |
vp9_cx_iface.c | 186 // automatic keyframe placement mode. 190 ERROR("kf_min_dist not supported in auto mode, use 0 " 303 oxcf->mode = MODE_GOODQUALITY; 306 oxcf->mode = MODE_FIRSTPASS; 309 oxcf->mode = MODE_SECONDPASS_BEST; 401 printf("Mode: %d\n", oxcf->mode); 597 // Use best quality mode if no deadline is given. 598 MODE new_qc = MODE_BESTQUALITY; 607 // use good quality mode. Otherwise use realtime mode 997 vpx_scaling_mode_t *const mode = va_arg(args, vpx_scaling_mode_t *); local [all...] |