HomeSort by relevance Sort by last modified time
    Searched refs:param (Results 76 - 100 of 1029) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 24 private KeyParameter param; field in class:RFC3394WrapEngine
38 CipherParameters param)
42 if (param instanceof ParametersWithRandom)
44 param = ((ParametersWithRandom) param).getParameters();
47 if (param instanceof KeyParameter)
49 this.param = (KeyParameter)param;
51 else if (param instanceof ParametersWithIV)
53 this.iv = ((ParametersWithIV)param).getIV()
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 48 static int parsecmdline(int argc, char **argv,char **input_filename, char **output_filename, AACENC_PARAM *param)
54 param->adtsUsed = 1;
55 param->bitRate = 0;
56 param->nChannels = 2;
57 param->sampleRate = 44100;
84 param->sampleRate = atoi(*argv);
90 param->nChannels = atoi(*argv);
96 param->bitRate = atoi(*argv);
102 param->adtsUsed = atoi(*argv);
113 if(param->bitRate == 0)
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 307 * @param type type of effect engine created. See {@link #EFFECT_TYPE_ENV_REVERB},
316 * @param uuid unique identifier of a particular effect implementation.
321 * @param priority the priority level requested by the application for
327 * @param audioSession system wide unique audio session identifier. If audioSession
424 * @param enabled the requested enable state
443 * @param param the identifier of the parameter to set
444 * @param value the new value for the specified parameter
451 public int setParameter(byte[] param, byte[] value)
454 return native_setParameter(param.length, param, value.length, value)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Management/SoftGemini/src/
SoftGemini.c 76 static void SoftGemini_setConfigParam(TI_HANDLE hSoftGemini, UINT32 *param);
326 DESCRIPTION: SoftGemini set param function, called by the following:
379 DESCRIPTION: SoftGemini get param function, called by the following:
412 whalParamInfo_t param; local
459 param.paramType = HAL_CTRL_SG_ENABLE_PARAM;
460 param.content.SoftGeminiEnable = SG_ENABLE;
461 return_value = whalCtrl_SetParam(pSoftGemini->hHalCtrl, &param);
471 param.paramType = HAL_CTRL_SG_ENABLE_PARAM;
472 param.content.SoftGeminiEnable = SG_DISABLE;
473 return_value = whalCtrl_SetParam(pSoftGemini->hHalCtrl, &param);
614 paramInfo_t param; local
728 paramInfo_t param; local
791 paramInfo_t param; local
825 paramInfo_t param; local
864 paramInfo_t param; local
908 paramInfo_t param; local
931 paramInfo_t param; local
987 paramInfo_t param; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyPairGenerator.java 74 RSAKeyGenerationParameters param; field in class:JDKKeyPairGenerator.RSA
82 param = new RSAKeyGenerationParameters(defaultPublicExponent,
84 engine.init(param);
91 param = new RSAKeyGenerationParameters(defaultPublicExponent,
94 engine.init(param);
108 param = new RSAKeyGenerationParameters(
112 engine.init(param);
131 DHKeyGenerationParameters param; field in class:JDKKeyPairGenerator.DH
162 param = new DHKeyGenerationParameters(random, new DHParameters(dhParams.getP(), dhParams.getG(), null, dhParams.getL()));
164 engine.init(param);
208 DSAKeyGenerationParameters param; field in class:JDKKeyPairGenerator.DSA
    [all...]
JDKDSASigner.java 58 CipherParameters param; local
63 // param = GOST3410Util.generatePublicKeyParameter(publicKey);
71 param = DSAUtil.generatePublicKeyParameter(publicKey);
83 param = DSAUtil.generatePublicKeyParameter(publicKey);
97 signer.init(false, param);
113 CipherParameters param; local
118 // param = GOST3410Util.generatePrivateKeyParameter(privateKey);
123 param = DSAUtil.generatePrivateKeyParameter(privateKey);
130 param = new ParametersWithRandom(param, random)
    [all...]
PBE.java 136 CipherParameters param; local
147 param = generator.generateDerivedParameters(pbeKey.getKeySize(), pbeKey.getIvSize());
151 param = generator.generateDerivedParameters(pbeKey.getKeySize());
156 if (param instanceof ParametersWithIV)
158 KeyParameter kParam = (KeyParameter)((ParametersWithIV)param).getParameters();
164 KeyParameter kParam = (KeyParameter)param;
175 return param;
195 CipherParameters param; local
204 param = generator.generateDerivedMacParameters(pbeKey.getKeySize());
211 return param;
227 CipherParameters param; local
270 CipherParameters param; local
    [all...]
  /device/samsung/crespo/libaudio2/
AudioPolicyManager.cpp 67 AudioParameter param = AudioParameter(); local
68 param.add(key, value);
69 mpClientInterface->setParameters(input, param.toString());
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DESedeKeyGenerator.java 16 * @param param the parameters to be used for key generation
19 KeyGenerationParameters param)
21 this.random = param.getRandom();
22 this.strength = (param.getStrength() + 7) / 8;
DESKeyGenerator.java 15 * @param param the parameters to be used for key generation
18 KeyGenerationParameters param)
20 super.init(param);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 115 public void publicVoidVarargs(Object... param){}
116 public void publicVoidArray(Object[] param){}
129 public void invokeCastTest1(byte param) {
132 public void invokeCastTest1(short param) {
135 public void invokeCastTest1(int param) {
138 public void invokeCastTest1(long param) {
141 public void invokeCastTest1(float param) {
144 public void invokeCastTest1(double param) {
147 public void invokeCastTest1(char param) {
150 public void invokeCastTest1(boolean param) {
837 Class param = methods[i].getParameterTypes()[0]; local
    [all...]
  /external/openssl/crypto/evp/
p5_crpt.c 73 ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md,
87 if (param == NULL || param->type != V_ASN1_SEQUENCE ||
88 param->value.sequence == NULL) {
93 pbuf = param->value.sequence->data;
94 if (!(pbe = d2i_PBEPARAM(NULL, &pbuf, param->value.sequence->length))) {
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
connIbss.c 93 DESCRIPTION: IBSS Connection configuration function, called by the conection set param function
230 paramInfo_t param; local
234 param.paramType = RX_DATA_PORT_STATUS_PARAM;
235 param.content.rxDataPortStatus = OPEN_EAPOL;
236 rxData_setParam (pConn->hRxData, &param);
260 paramInfo_t param; local
270 param.paramType = RX_DATA_PORT_STATUS_PARAM;
271 param.content.rxDataPortStatus = OPEN;
272 rxData_setParam(((conn_t *)pData)->hRxData, &param);
288 paramInfo_t param; local
401 paramInfo_t param; local
440 paramInfo_t param; local
547 paramInfo_t param; local
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
connIbss.c 93 DESCRIPTION: IBSS Connection configuration function, called by the conection set param function
230 paramInfo_t param; local
234 param.paramType = RX_DATA_PORT_STATUS_PARAM;
235 param.content.rxDataPortStatus = OPEN_EAPOL;
236 rxData_setParam (pConn->hRxData, &param);
265 paramInfo_t param; local
275 param.paramType = RX_DATA_PORT_STATUS_PARAM;
276 param.content.rxDataPortStatus = OPEN;
277 rxData_setParam(((conn_t *)pData)->hRxData, &param);
293 paramInfo_t param; local
411 paramInfo_t param; local
450 paramInfo_t param; local
554 paramInfo_t param; local
    [all...]
  /external/esd/include/
aupvlist.h 50 int AUpvsetparam (AUpvlist, int item, int param);
53 int AUpvgetparam (AUpvlist, int item, int *param);
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_timer.h 94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /external/srec/config/en.us/
run-chmod.sh 4 chmod 777 ./run-set-get-param.sh
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_timer.h 94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_timer.h 94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilt/windows/sdl/host/include/SDL/
SDL_timer.h 97 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
105 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilt/windows/sdl/include/SDL/
SDL_timer.h 94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /external/bluetooth/glib/tests/gobject/
accumulator.c 58 gint param);
60 gint param);
89 gint param,
97 gint param)
104 gint param,
112 gint param)
114 switch (param)
128 gint param)
130 switch (param)
144 gint param)
    [all...]
  /frameworks/base/media/libmedia/
AudioEffect.cpp 261 status_t AudioEffect::setParameter(effect_param_t *param)
267 if (param == NULL || param->psize == 0 || param->vsize == 0) {
272 uint32_t psize = ((param->psize - 1) / sizeof(int) + 1) * sizeof(int) + param->vsize;
274 LOGV("setParameter: param: %d, param2: %d", *(int *)param->data, (param->psize == 8) ? *((int *)param->data + 1): -1)
    [all...]
  /frameworks/base/services/audioflinger/
A2dpAudioInterface.cpp 131 AudioParameter param = AudioParameter(keyValuePairs); local
139 if (param.get(key, value) == NO_ERROR) {
144 param.remove(key);
147 if (param.get(key, value) == NO_ERROR) {
152 param.remove(key);
155 if (param.size()) {
156 status_t hwStatus = mHardwareInterface->setParameters(param.toString());
167 AudioParameter param = AudioParameter(keys); local
173 if (param.get(key, value) == NO_ERROR) {
176 param.remove(key)
347 AudioParameter param = AudioParameter(keyValuePairs); local
386 AudioParameter param = AudioParameter(keys); local
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Assoc/
assocSM.c 696 paramInfo_t param; local
702 param.paramType = CTRL_DATA_CURRENT_BSS_TYPE_PARAM;
703 ctrlData_getParam(pHandle->hCtrlData, &param);
704 if (param.content.ctrlDataCurrentBssType != BSS_INFRASTRUCTURE)
1173 paramInfo_t param; local
1183 param.paramType = CTRL_DATA_CURRENT_BSS_TYPE_PARAM;
1184 status = ctrlData_getParam(pCtx->hCtrlData, &param);
1187 if (param.content.ctrlDataCurrentBssType == BSS_INFRASTRUCTURE)
1198 param.paramType = RSN_ENCRYPTION_STATUS_PARAM;
1199 status = rsn_getParam(pCtx->hRsn, &param);
1311 paramInfo_t param; local
1343 paramInfo_t param; local
1391 paramInfo_t param; local
1476 paramInfo_t param; local
1550 paramInfo_t param; local
    [all...]

Completed in 260 milliseconds

1 2 34 5 6 7 8 91011>>