Searched refs:code (Results 76 - 100 of 332) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcalc_en.h22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
111 * frac_en[2]*2^exp_en[2] = <exc code> // LTP/CB innovation dot product
120 Word16 code[], /* i : CB innovation (unfiltered), Q13 */
H A Dqgain795.h22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
111 Word16 code[], /* i : CB innovation (unfiltered), Q13 */
130 /* (first gain pitch, then code pitch)*/
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java77 * @param code HTTP Status code. See RFC 2616.
82 int code,
80 status(int major_version, int minor_version, int code, String reason_phrase) argument
H A DLoggingEventHandler.java36 int code, /* Status-Code value */
41 " code: " + code +
34 status(int major_version, int minor_version, int code, String reason_phrase) argument
/frameworks/base/core/java/android/os/
H A DBinder.java52 /* mObject is used by native code, do not remove or rename */
125 * native-only code on Dalvik.
226 protected boolean onTransact(int code, Parcel data, Parcel reply, argument
228 if (code == INTERFACE_TRANSACTION) {
231 } else if (code == DUMP_TRANSACTION) {
304 public final boolean transact(int code, Parcel data, Parcel reply, argument
306 if (false) Log.v("Binder", "Transact: " + code + " to " + this);
310 boolean r = onTransact(code, data, reply, flags);
342 private boolean execTransact(int code, int dataObj, int replyObj, argument
351 res = onTransact(code, dat
381 transact(int code, Parcel data, Parcel reply, int flags) argument
[all...]
/frameworks/base/include/storage/
H A DIMountServiceListener.h38 virtual status_t onTransact(uint32_t code, const Parcel& data,
H A DIObbActionListener.h40 virtual status_t onTransact( uint32_t code,
/frameworks/native/include/binder/
H A DIPermissionController.h45 virtual status_t onTransact( uint32_t code,
H A DIMemory.h58 uint32_t code,
88 uint32_t code,
/frameworks/native/include/gui/
H A DIDisplayEventConnection.h64 virtual status_t onTransact( uint32_t code,
H A DISensorServer.h48 virtual status_t onTransact( uint32_t code,
/frameworks/av/include/media/
H A DIHDCP.h66 uint32_t code, const Parcel &data, Parcel *reply,
72 uint32_t code, const Parcel &data, Parcel *reply,
H A DIStreamSource.h84 uint32_t code, const Parcel &data, Parcel *reply,
90 uint32_t code, const Parcel &data, Parcel *reply,
/frameworks/av/media/common_time/
H A DAndroid.mk5 # helper code)
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dd_gain_c.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
61 code[] = pointer to innovation codevector of type Word16
101 When the code is written for a specific target processor the
194 Word16 code[], /* i : innovation codevector */
217 gc_pred(pred_state, mode, code, &exp, &frac,
190 d_gain_code( gc_predState *pred_state, enum Mode mode, Word16 index, Word16 code[], Word16 *gain_code, Flag *pOverflow ) argument
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java30 * Base class for code that will receive intents sent by sendBroadcast().
43 * tag in your <code>AndroidManifest.xml</code>.
128 * unavailable to them with <code>android:exported="false"</code>.
151 * tag in their <code>AndroidManifest.xml</code>) will be able to receive
159 * tag in your <code>AndroidManifest.xml</code>. Only broadcasters who have
162 * tag in their <code>AndroidManifes
266 setResultCode(int code) argument
326 setResult(int code, String data, Bundle extras) argument
548 setResultCode(int code) argument
657 setResult(int code, String data, Bundle extras) argument
[all...]
/frameworks/base/include/android_runtime/
H A DAndroidRuntime.h69 void exit(int code);
79 * run any code. Override it to make any FindClass calls that need
101 virtual void onExit(int code) { } argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResultCode.java21 * Enumeration for the return code in TERMINAL RESPONSE.
22 * To get the actual return code for each enum value, call {@link #code() code}
105 /** Launch browser generic error code */
166 ResultCode(int code) { argument
167 mCode = code;
171 * Retrieves the actual result code that this object represents.
172 * @return Actual result code
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpvamrwbdecoder_acelp.h22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
253 int16 code[], /* (i) Q9 :Innovative vector. */
271 int16 code[] /* (o) :Q9 algebraic (fixed) codebook excitation */
283 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */
286 int16 * x, /* in/out: impulse response (or algebraic code) */
301 int16 code[], /* (i) Q9 : Fixed codebook excitation */
302 int16 gain_code, /* (i) Q0 : gain of code */
316 int16 gain_code, /* (i) Q0 : gain of code */
318 int16 code[], /* (i/o) : code vecto
[all...]
H A Dpvamrwbdecoder.cpp22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
308 int16 *code = &isf_tmp[M]; /* algebraic codevector */ local
309 int16 *excp = &code[L_SUBFR];
557 * - decode algebraic code
559 * - find voicing factor and tilt of code for next subframe.
706 code[i] = amr_wb_round(L_tmp << 1);
708 pv_memcpy((void *)&exc[i_subfr], (void *)code, L_SUBFR*sizeof(*code));
713 * Add the fixed-gain pitch contribution to code[].
718 /* the innovative code does
[all...]
/frameworks/native/libs/binder/
H A DBinder.cpp98 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
103 switch (code) {
108 err = onTransact(code, data, reply, flags);
187 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
189 switch (code) {
97 transact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
186 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java39 int code; field in class:AsyncPlayer.Command
47 return "{ code=" + code + " looping=" + looping + " stream=" + stream
94 switch (cmd.code) {
168 cmd.code = PLAY;
190 cmd.code = STOP;
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java178 // crash package name against the package name for {@code app}
363 int code = 17;
364 code += info.condition;
365 code *= hash(info.longMsg);
366 code += info.pid;
367 code *= hash(info.processName);
368 code *= hash(info.shortMsg);
369 code *= hash(info.stackTrace);
370 code *= hash(info.tag);
371 code
[all...]
/frameworks/av/camera/
H A DICameraService.cpp75 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
77 switch(code) {
101 return BBinder::onTransact(code, data, reply, flags);
74 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libmedia/
H A DIAudioFlingerClient.cpp69 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 switch (code) {
95 return BBinder::onTransact(code, data, reply, flags);
68 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument

Completed in 403 milliseconds

1234567891011>>