/external/opencore/engines/player/src/ |
pv_player_engine.h | 448 case PVP_ENGINE_COMMAND_GET_SDK_INFO: 450 case PVP_ENGINE_COMMAND_GET_SDK_MODULE_INFO: 452 case PVP_ENGINE_COMMAND_SET_LOG_APPENDER: 454 case PVP_ENGINE_COMMAND_REMOVE_LOG_APPENDER: 456 case PVP_ENGINE_COMMAND_SET_LOG_LEVEL: 458 case PVP_ENGINE_COMMAND_GET_LOG_LEVEL: 460 case PVP_ENGINE_COMMAND_QUERY_UUID: 462 case PVP_ENGINE_COMMAND_QUERY_INTERFACE: 464 case PVP_ENGINE_COMMAND_CANCEL_COMMAND: 465 case PVP_ENGINE_COMMAND_CANCEL_ALL_COMMANDS [all...] |
/external/openssl/crypto/x509v3/ |
v3_alt.c | 108 case GEN_OTHERNAME: 112 case GEN_X400: 116 case GEN_EDIPARTY: 120 case GEN_EMAIL: 124 case GEN_DNS: 128 case GEN_URI: 132 case GEN_DIRNAME: 137 case GEN_IPADD: 163 case GEN_RID: 177 case GEN_OTHERNAME [all...] |
/external/openssl/ssl/ |
ssl_ciph.c | 349 case SSL_DES: 352 case SSL_3DES: 355 case SSL_RC4: 358 case SSL_RC2: 361 case SSL_IDEA: 364 case SSL_eNULL: 367 case SSL_AES: 370 case 128: i=SSL_ENC_AES128_IDX; break; 371 case 256: i=SSL_ENC_AES256_IDX; break; 375 case SSL_CAMELLIA [all...] |
/external/qemu/audio/ |
winaudio.c | 70 case MMSYSERR_ALLOCATED: reason="specified resource is already allocated"; break;
71 case MMSYSERR_BADDEVICEID: reason="bad device id"; break;
72 case MMSYSERR_NODRIVER: reason="no driver is present"; break;
73 case MMSYSERR_NOMEM: reason="unable to allocate or lock memory"; break;
74 case WAVERR_BADFORMAT: reason="unsupported waveform-audio format"; break;
75 case WAVERR_SYNC: reason="device is synchronous"; break;
182 case AUD_FMT_S8: shift = 0; break;
183 case AUD_FMT_U8: shift = 0; s->silence = 0x80; break;
184 case AUD_FMT_S16: shift = 1; break;
185 case AUD_FMT_U16: shift = 1; s->silence = 0x8000; break; [all...] |
/external/qemu/distrib/sdl-1.2.12/src/joystick/bsd/ |
SDL_sysjoystick.c | 202 case HUG_X: 204 case HUG_Y: 206 case HUG_Z: 208 case HUG_SLIDER: 210 case HUG_WHEEL: 212 case HUG_RX: 214 case HUG_RY: 216 case HUG_RZ: 330 case hid_collection: 332 case HUP_GENERIC_DESKTOP [all...] |
/external/svox/pico/lib/ |
picotok.c | 497 case PICODATA_ITEM_CMD: 499 case PICODATA_ITEMINFO1_CMD_CONTEXT: 500 case PICODATA_ITEMINFO1_CMD_VOICE: 501 case PICODATA_ITEMINFO1_CMD_MARKER: 502 case PICODATA_ITEMINFO1_CMD_PLAY: 503 case PICODATA_ITEMINFO1_CMD_SAVE: 504 case PICODATA_ITEMINFO1_CMD_UNSAVE: 505 case PICODATA_ITEMINFO1_CMD_PROSDOMAIN: 506 case PICODATA_ITEMINFO1_CMD_PHONEME: 521 case PICODATA_ITEMINFO1_CMD_IGNSIG [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.4.11-4.js | 32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case 57 // Hiragana (no upper / lower case) 98 // upper case Basic Latin 106 // lower case Basic Latin 113 // upper case Latin-1 Supplement 120 // lower case Latin-1 Supplement 133 // special case for capital I 146 // if it's even, it's a capital and the lower case is c +1 150 // if it's odd, it's a lower case and upper case is c- [all...] |
15.5.4.12-3.js | 32 case the uppercase equivalent is used instead. (The canonical Unicode 2.0 case 88 // Hiragana (no upper / lower case) 151 // upper case Basic Latin 159 // lower case Basic Latin 166 // upper case Latin-1 Supplement 178 // lower case Latin-1 Supplement 191 // special case for capital I 204 // if it's even, it's a capital and the lower case is c +1 208 // if it's odd, it's a lower case and upper case is c- [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaServiceStateTracker.java | 296 case EVENT_RADIO_AVAILABLE: 299 case EVENT_RUIM_READY: 319 case EVENT_NV_READY: 330 case EVENT_RADIO_STATE_CHANGED: 331 // This will do nothing in the 'radio not available' case. 336 case EVENT_NETWORK_STATE_CHANGED_CDMA: 340 case EVENT_GET_SIGNAL_STRENGTH: 354 case EVENT_GET_LOC_DONE_CDMA: 402 case EVENT_POLL_STATE_REGISTRATION_CDMA: 403 case EVENT_POLL_STATE_OPERATOR_CDMA [all...] |
/system/core/libnetutils/ |
dhcpclient.c | 161 case DHCPDISCOVER: return "discover"; 162 case DHCPOFFER: return "offer"; 163 case DHCPREQUEST: return "request"; 164 case DHCPDECLINE: return "decline"; 165 case DHCPACK: return "ack"; 166 case DHCPNAK: return "nak"; 167 case DHCPRELEASE: return "release"; 168 case DHCPINFORM: return "inform"; 222 case OPT_SUBNET_MASK: 225 case OPT_GATEWAY [all...] |
/bionic/libc/kernel/arch-arm/asm/ |
uaccess.h | 44 #define __get_user_err(x,ptr,err) do { unsigned long __gu_addr = (unsigned long)(ptr); unsigned long __gu_val; __chk_user_ptr(ptr); switch (sizeof(*(ptr))) { case 1: __get_user_asm_byte(__gu_val,__gu_addr,err); break; case 2: __get_user_asm_half(__gu_val,__gu_addr,err); break; case 4: __get_user_asm_word(__gu_val,__gu_addr,err); break; default: (__gu_val) = __get_user_bad(); } (x) = (__typeof__(*(ptr)))__gu_val; } while (0) 54 #define __put_user_err(x,ptr,err) do { unsigned long __pu_addr = (unsigned long)(ptr); __typeof__(*(ptr)) __pu_val = (x); __chk_user_ptr(ptr); switch (sizeof(*(ptr))) { case 1: __put_user_asm_byte(__pu_val,__pu_addr,err); break; case 2: __put_user_asm_half(__pu_val,__pu_addr,err); break; case 4: __put_user_asm_word(__pu_val,__pu_addr,err); break; case 8: __put_user_asm_dword(__pu_val,__pu_addr,err); break; default: __put_user_bad(); } } while (0)
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteOps.java | 566 case '-': info = FMT_NO_ARGS; break; 567 case '0': info = FMT_NO_ARGS_LOCALS_1; break; 568 case '1': info = FMT_NO_ARGS_LOCALS_2; break; 569 case '2': info = FMT_NO_ARGS_LOCALS_3; break; 570 case '3': info = FMT_NO_ARGS_LOCALS_4; break; 571 case '4': info = FMT_NO_ARGS_LOCALS_5; break; 572 case 'b': info = FMT_BRANCH; break; 573 case 'c': info = FMT_WIDE_BRANCH; break; 574 case 'p': info = FMT_CPI; break; 575 case 'l': info = FMT_LOCAL_1; break [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
PBE.java | 58 case MD5: 61 case SHA1: 76 case MD5: 79 case SHA1: 83 // case RIPEMD160: 86 // case TIGER: 90 case SHA256:
|
/development/samples/LunarLander/src/com/example/android/lunarlander/ |
LunarLander.java | 90 case MENU_START: 93 case MENU_STOP: 97 case MENU_PAUSE: 100 case MENU_RESUME: 103 case MENU_EASY: 106 case MENU_MEDIUM: 109 case MENU_HARD:
|
/external/bluetooth/bluez/audio/ |
ipctest.c | 331 case BT_SBC_SAMPLING_FREQ_16000: 332 case BT_SBC_SAMPLING_FREQ_32000: 335 case BT_SBC_SAMPLING_FREQ_44100: 338 case BT_A2DP_CHANNEL_MODE_MONO: 339 case BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL: 342 case BT_A2DP_CHANNEL_MODE_STEREO: 343 case BT_A2DP_CHANNEL_MODE_JOINT_STEREO: 351 case BT_SBC_SAMPLING_FREQ_48000: 354 case BT_A2DP_CHANNEL_MODE_MONO: 355 case BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL [all...] |
/external/e2fsprogs/lib/uuid/ |
uuid_time.c | 97 case UUID_VARIANT_NCS: 99 case UUID_VARIANT_DCE: 101 case UUID_VARIANT_MICROSOFT: 137 case 1: 140 case 2: 143 case 3: 146 case 4:
|
/external/e2fsprogs/misc/ |
tune2fs.c | 559 case 'c': 572 case 'C': 583 case 'e': 599 case 'E': 603 case 'f': /* Force */ 606 case 'g': 626 case 'i': 629 case 's': 632 case '\0': 633 case 'd' [all...] |
/external/fsck_msdos/ |
main.c | 79 case 'C': /* for fsck_ffs compatibility */ 81 case 'f': 84 case 'F': 90 * in case someone tries -F directly. The -F flag 94 case 'n': 98 case 'y': 103 case 'p':
|
/external/icu4c/test/cintltst/ |
spreptst.c | 115 "Case folding ASCII U+0043 U+0041 U+0046 U+0045", 122 "Case folding 8bit U+00DF (german sharp s)", 508 log_err("StringPrep failed for case: BiDi Checking Turned OFF with error: %s\n", u_errorName(status)); 511 log_err("Did not get the expected output for case: BiDi Checking Turned OFF\n"); 514 log_err("Did not get the expected length for the output for case: BiDi Checking Turned OFF. Expected: %i Got: %i\n", srcLen, destLen); 517 log_err("Conversion failed for case: BiDi Checking Turned OFF with error: %s\n", u_errorName(status)); 531 log_err("StringPrep failed for case: Normalization Turned OFF with error: %s\n", u_errorName(status)); 534 log_err("Did not get the expected output for case: Normalization Turned OFF\n"); 537 log_err("Did not get the expected length for the output for case: Normalization Turned OFF. Expected: %i Got: %i\n", srcLen, destLen); 540 log_err("Conversion failed for case: Normalization Turned OFF with error: %s\n", u_errorName(status)) [all...] |
/external/icu4c/test/intltest/ |
jacoll.cpp | 109 /* for one case, strcollinc fails, since it doesn't have good handling of contractions*/ 185 case 0: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break; 186 case 1: name = "TestBase"; if (exec) TestBase(/* par */); break; 187 case 2: name = "TestSmallLarge"; if (exec) TestSmallLarge(/* par */); break; 188 case 3: name = "TestTestPlainDakutenHandakuten"; if (exec) TestPlainDakutenHandakuten(/* par */); break; 189 case 4: name = "TestKatakanaHiragana"; if (exec) TestKatakanaHiragana(/* par */); break; 190 case 5: name = "TestChooonKigoo"; if (exec) TestChooonKigoo(/* par */); break;
|
/external/kernel-headers/original/asm-x86/ |
uaccess_32.h | 153 case 1: __get_user_x(1,__ret_gu,__val_gu,ptr); break; \ 154 case 2: __get_user_x(2,__ret_gu,__val_gu,ptr); break; \ 155 case 4: __get_user_x(4,__ret_gu,__val_gu,ptr); break; \ 203 case 1: __put_user_1(__pu_val, ptr); break; \ 204 case 2: __put_user_2(__pu_val, ptr); break; \ 205 case 4: __put_user_4(__pu_val, ptr); break; \ 206 case 8: __put_user_8(__pu_val, ptr); break; \ 305 case 1: __put_user_asm(x,ptr,retval,"b","b","iq",errret);break; \ 306 case 2: __put_user_asm(x,ptr,retval,"w","w","ir",errret);break; \ 307 case 4: __put_user_asm(x,ptr,retval,"l","","ir",errret); break; [all...] |
/external/libxml2/include/libxml/ |
xmlmemory.h | 64 * Returns a pointer to the newly allocated block or NULL in case of error. 75 * Returns a pointer to the newly reallocated block or NULL in case of error. 85 * Returns the copy of the string or NULL in case of error. 177 * Returns the pointer to the allocated area or NULL in case of error. 187 * Returns the pointer to the allocated area or NULL in case of error. 197 * Returns the pointer to the allocated area or NULL in case of error. 206 * Returns the pointer to the allocated area or NULL in case of error.
|
/external/libxml2/ |
xpointer.c | 132 * Returns the number of child for an element, -1 in case of error 155 * in case of error 214 * Returns -2 in case of error 1 if first point < second point, 0 if 551 case XPATH_POINT: 552 case XPATH_RANGE: 554 case XPATH_NODESET: 576 case XPATH_POINT: 580 case XPATH_RANGE: 584 case XPATH_NODESET: { 692 * Returns val1 once extended or NULL in case of error [all...] |
/external/opencore/engines/2way/test/src/ |
video_only_test.cpp | 94 case PVT_INDICATION_OUTGOING_TRACK: 120 case PVT_INDICATION_INCOMING_TRACK: 146 case PVT_INDICATION_DISCONNECT: 153 case PVT_INDICATION_CLOSE_TRACK: 156 case PVT_INDICATION_INTERNAL_ERROR: 173 case PV_INDICATION_VIDEO_SPATIAL_TEMPORAL_TRADEOFF_COMMAND: 180 case PV_INDICATION_VIDEO_SPATIAL_TEMPORAL_TRADEOFF_INDICATION:
|
/external/opencore/protocols/rtsp_parcom/src/ |
rtsp_parser.cpp | 26 // 1. It is case-insensitive, so "Ces" can be found in the word "success"; 96 case IS_WAITING_FOR_REQUEST_MEMORY: 100 case IS_LOOKING_FOR_END_OF_REQUEST: 101 case IS_CONTINUING_TO_FILL_OUT_ENTITY_BODY: 102 case IS_SKIPPING_OVER_ENTITY_BODY: 103 case IS_LOOKING_FOR_RESYNC: 104 case IS_CONTINUING_TO_FILL_OUT_EMBEDDED_DATA: 105 case IS_SKIPPING_OVER_EMBEDDED_DATA: 109 case IS_START_LOOKING_FOR_RESYNC: 114 case IS_WAITING_FOR_ENTITY_BODY_MEMORY [all...] |