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

1 2 3 4 5 6 78 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCESecretKeyFactory.java 140 CipherParameters param; local
149 param = Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
153 param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
156 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
197 CipherParameters param; local
206 param = Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
210 param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
213 if (param instanceof ParametersWithIV)
215 KeyParameter kParam = (KeyParameter)((ParametersWithIV)param).getParameters();
221 KeyParameter kParam = (KeyParameter)param;
672 CipherParameters param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize); local
    [all...]
JCEMac.java 86 CipherParameters param; local
99 param = k.getParam();
103 param = PBE.Util.makePBEMacParameters(k, params);
112 param = new ParametersWithIV(new KeyParameter(key.getEncoded()), ((IvParameterSpec)params).getIV());
116 param = new KeyParameter(key.getEncoded());
123 macEngine.init(param);
WrapCipherSpi.java 143 CipherParameters param; local
151 param = PBE.Util.makePBEParameters(k, params, wrapEngine.getAlgorithmName());
155 param = k.getParam();
164 param = new KeyParameter(key.getEncoded());
170 param = new ParametersWithIV(param, iv.getIV());
173 if (param instanceof KeyParameter && ivSize != 0)
177 param = new ParametersWithIV(param, iv);
183 wrapEngine.init(true, param);
    [all...]
  /external/chromium/net/http/
des.cc 96 SECItem* param = NULL; local
115 param = PK11_ParamFromIV(cipher_mech, NULL);
116 if (!param)
120 symkey, param);
139 if (param)
140 SECITEM_FreeItem(param, PR_TRUE);
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
templates.c 84 paramInfo_t param; local
101 param.paramType = CTRL_DATA_MAC_ADDRESS;
102 ctrlData_getParam(pSiteMgr->hCtrlData, &param);
103 MAC_COPY (pBuffer->hdr.SA, param.content.ctrlDataDeviceMacAddress);
134 paramInfo_t param; local
152 param.paramType = CTRL_DATA_MAC_ADDRESS;
153 ctrlData_getParam(pSiteMgr->hCtrlData, &param);
154 MAC_COPY (pBuffer->hdr.SA, param.content.ctrlDataDeviceMacAddress);
175 * \param hSiteMgr - Handle to site manager
223 paramInfo_t param; local
398 paramInfo_t param; local
625 paramInfo_t param; local
695 paramInfo_t param; local
767 paramInfo_t param; \/* To get Site and QoS params *\/ local
    [all...]
  /external/apache-http/src/org/apache/http/params/
BasicHttpParams.java 66 Object param = null; local
68 param = this.parameters.get(name);
70 return param;
98 * @param names array of parameter name
99 * @param value parameter value
146 * @param target the parameters to which to copy
HttpProtocolParams.java 80 * @param charset The charset
109 * @param charset The charset
127 Object param = params.getParameter local
129 if (param == null) {
132 return (ProtocolVersion)param;
139 * @param version the {@link ProtocolVersion protocol version}
  /external/chromium/third_party/icu/source/tools/ctestfw/unicode/
utimer.h 40 * void NormFn( void* param){
41 * Params* parameters = ( Params*) param;
52 * Params param;
53 * param.source // set up the source buffer
54 * param.target // set up the target buffer
58 * timeTaken = utimer_loopUntilDone((double)10,(void*) param, NormFn, &loopCount);
160 typedef void FuntionToBeTimed(void* param);
215 * @param timer A pointer to UTimer struct to recieve the current time
227 * @param timer1 A pointer to UTimer struct to be used as starting time
228 * @param timer2 A pointer to UTimer struct to be used as end tim
    [all...]
  /external/icu4c/tools/ctestfw/unicode/
utimer.h 40 * void NormFn( void* param){
41 * Params* parameters = ( Params*) param;
52 * Params param;
53 * param.source // set up the source buffer
54 * param.target // set up the target buffer
58 * timeTaken = utimer_loopUntilDone((double)10,(void*) param, NormFn, &loopCount);
160 typedef void FuntionToBeTimed(void* param);
215 * @param timer A pointer to UTimer struct to recieve the current time
227 * @param timer1 A pointer to UTimer struct to be used as starting time
228 * @param timer2 A pointer to UTimer struct to be used as end tim
    [all...]
  /external/chromium/third_party/icu/source/test/threadtest/
threadtest.cpp 48 static void startThread(ThreadFunc, void *param);
53 void ThreadFuncs::startThread(ThreadFunc func, void *param)
56 x = _beginthread(func, 0x10000, param);
97 static void startThread(ThreadFunc, void *param);
110 void ThreadFuncs::startThread(ThreadFunc func, void *param)
117 x = pthread_create( &tId, pthread_attr_default, (pthreadfunc)func, param);
121 x = pthread_create( &tId, &attr, (pthreadfunc)func, param);
314 void threadMain (void *param)
316 ThreadInfo *thInfo = (ThreadInfo *)param;
  /external/chromium/third_party/libevent/
epoll_sub.c 29 #include <sys/param.h>
  /external/dropbear/
chansession.h 76 void addnewvar(const char* param, const char* var);
svr-session.c 127 void svr_dropbear_exit(int exitcode, const char* format, va_list param) {
151 _dropbear_log(LOG_INFO, fmtbuf, param);
161 void svr_dropbear_log(int priority, const char* format, va_list param) {
168 vsnprintf(printbuf, sizeof(printbuf), format, param);
  /external/e2fsprogs/lib/ext2fs/
flushb.c 24 #include <sys/param.h>
  /external/icu4c/test/threadtest/
threadtest.cpp 48 static void startThread(ThreadFunc, void *param);
53 void ThreadFuncs::startThread(ThreadFunc func, void *param)
56 x = _beginthread(func, 0x10000, param);
97 static void startThread(ThreadFunc, void *param);
110 void ThreadFuncs::startThread(ThreadFunc func, void *param)
117 x = pthread_create( &tId, pthread_attr_default, (pthreadfunc)func, param);
121 x = pthread_create( &tId, &attr, (pthreadfunc)func, param);
314 void threadMain (void *param)
316 ThreadInfo *thInfo = (ThreadInfo *)param;
  /external/openssl/crypto/x509/
x509_vfy.h 192 X509_VERIFY_PARAM *param; member in struct:x509_store_st
240 X509_VERIFY_PARAM *param; member in struct:x509_store_ctx_st
505 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param);
511 void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param);
516 int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name);
517 int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags);
518 int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *param,
520 unsigned long X509_VERIFY_PARAM_get_flags(X509_VERIFY_PARAM *param);
521 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose);
522 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust)
    [all...]
  /external/openssl/include/openssl/
x509_vfy.h 192 X509_VERIFY_PARAM *param; member in struct:x509_store_st
240 X509_VERIFY_PARAM *param; member in struct:x509_store_ctx_st
505 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param);
511 void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param);
516 int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name);
517 int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags);
518 int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *param,
520 unsigned long X509_VERIFY_PARAM_get_flags(X509_VERIFY_PARAM *param);
521 int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose);
522 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/
SDL_timer.c 44 void *param; member in struct:_SDL_TimerID
131 ms = timer.cb(timer.interval, timer.param);
165 static SDL_TimerID SDL_AddTimerInternal(Uint32 interval, SDL_NewTimerCallback callback, void *param)
172 t->param = param;
185 SDL_TimerID SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param)
201 t = SDL_AddTimerInternal(interval, callback, param);
236 static Uint32 SDLCALL callback_wrapper(Uint32 ms, void *param)
238 SDL_TimerCallback func = (SDL_TimerCallback) param;
  /frameworks/base/media/java/android/media/audiofx/
PresetReverb.java 120 * @param priority the priority level requested by the application for controlling the
124 * @param audioSession system wide unique audio session identifier. If audioSession
144 * @param preset this must be one of the the preset constants defined in this class.
178 * @param effect the PresetReverb on which the interface is registered.
179 * @param status status of the set parameter operation.
180 * @param param ID of the modified parameter. See {@link #PARAM_PRESET} ...
181 * @param value the new parameter value.
183 void onParameterChange(PresetReverb effect, int status, int param, short value);
194 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value)
    [all...]
  /system/core/sh/
exec.h 47 union param { union in struct:cmdentry
  /external/chromium/third_party/icu/source/test/intltest/
restest.cpp 97 param[] = variable in typeref:struct:__anon3181
111 static const int32_t bundles_count = sizeof(param) / sizeof(param[0]);
161 if (param[5].locale == NULL) {
162 param[0].locale = new Locale("root");
163 param[1].locale = new Locale("te");
164 param[2].locale = new Locale("te", "IN");
165 param[3].locale = new Locale("te", "NE");
166 param[4].locale = new Locale("te", "IN", "NE");
167 param[5].locale = new Locale("ne")
    [all...]
  /external/icu4c/test/intltest/
restest.cpp 97 param[] = variable in typeref:struct:__anon4250
111 static const int32_t bundles_count = sizeof(param) / sizeof(param[0]);
161 if (param[5].locale == NULL) {
162 param[0].locale = new Locale("root");
163 param[1].locale = new Locale("te");
164 param[2].locale = new Locale("te", "IN");
165 param[3].locale = new Locale("te", "NE");
166 param[4].locale = new Locale("te", "IN", "NE");
167 param[5].locale = new Locale("ne")
    [all...]
  /external/v8/tools/
logreader.js 40 * @param {Array.<Object>} dispatchTable A table used for parsing and processing
97 * @param {string} addressTag Address tag to perform offset decoding.
122 * @param {string} symbol Symbol to expand.
133 * @param {string} str Error message.
143 * @param {string} chunk A portion of log.
153 * @param {string} line A line of log.
163 * @param {number} pc Program counter.
164 * @param {number} func JS Function.
165 * @param {Array.<string>} stack String representation of a stack.
190 * @param {!Object} dispatch Dispatch record
    [all...]
profile_view.js 37 * @param {number} samplingRate Number of ms between profiler ticks.
48 * @param {devtools.profiler.CallTree} callTree A call tree.
49 * @param {boolean} opt_bottomUpViewWeights Whether remapping
83 * @param {devtools.profiler.ProfileView.Node} head View head node.
94 * @param {string} internalFuncName A fully qualified function name.
95 * @param {number} totalTime Amount of time that application spent in the
98 * @param {number} selfTime Amount of time that application spent in the
100 * @param {devtools.profiler.ProfileView.Node} head Profile view head.
114 * @param {devtools.profiler.ProfileView.Node} head Head (root) node.
125 * @param {function(devtools.profiler.ProfileView.Node
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioEffectTest.java 564 byte[] param = mEffect.intToByteArray(PresetReverb.PARAM_PRESET);
566 int status = mEffect.getParameter(param, value);
573 status = mEffect.setParameter(param, value);
575 status = mEffect.getParameter(param, value);
607 int param = EnvironmentalReverb.PARAM_DECAY_TIME; local
609 int status = mEffect.getParameter(param, value);
615 status = mEffect.setParameter(param, time);
617 status = mEffect.getParameter(param, value);
650 int param = PresetReverb.PARAM_PRESET; local
652 int status = mEffect.getParameter(param, value)
691 int param = EnvironmentalReverb.PARAM_DECAY_TIME; local
736 int[] param = new int[1]; local
782 int[] param = new int[1]; local
825 int[] param = new int[1]; local
    [all...]

Completed in 456 milliseconds

1 2 3 4 5 6 78 91011>>