Searched defs:code (Results 76 - 100 of 241) sorted by relevance

12345678910

/frameworks/av/media/libmedia/
H A DIEffect.cpp135 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
137 switch (code) {
211 return BBinder::onTransact(code, data, reply, flags);
134 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIMediaCodecList.cpp112 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
114 switch (code) {
185 return BBinder::onTransact(code, data, reply, flags);
111 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIResourceManagerService.cpp118 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags)
120 switch (code) {
160 return BBinder::onTransact(code, data, reply, flags);
117 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
H A DIStreamSource.cpp95 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
96 switch (code) {
135 return BBinder::onTransact(code, data, reply, flags);
178 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
179 switch (code) {
208 return BBinder::onTransact(code, data, reply, flags);
94 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
177 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dgc_pred.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
153 When the code is written for a specific target processor the
203 code = pointer to the innovative codebook vector; Q12 in MR122 mode,
256 The original etsi reference code uses a global flag Overflow. However, in the
263 Word16 *code, // i : innovative codebook vector (L_SUBFR)
278 * energy of code: *
280 * ener_code = sum(code[i]^2) *
282 ener_code = L_mac((Word32) 0, code[0], code[0]);
286 ener_code = L_mac(ener_code, code[
466 gc_pred( gc_predState *st, enum Mode mode, Word16 *code, Word16 *exp_gcode0, Word16 *frac_gcode0, Word16 *exp_en, Word16 *frac_en, Flag *pOverflow ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcalc_en.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
95 code = CB innovation (unfiltered), buffer type Word16
126 frac_en[2]*2^exp_en[2] = <exc code> LTP/CB innovation dot product
148 Word16 code[], // i : CB innovation (unfiltered), Q13
189 // Compute scalar product <exc[],code[]>
190 s = L_mac((Word32) 0, exc[0], code[0]);
192 s = L_mac(s, exc[i], code[i]);
244 When the code is written for a specific target processor the
267 Word16 code[], /* i : CB innovation (unfiltered), Q13 */
300 to have bit exact results with the pre-optimization code
264 calc_unfilt_energies( Word16 res[], Word16 exc[], Word16 code[], Word16 gain_pit, Word16 L_subfr, Word16 frac_en[], Word16 exp_en[], Word16 *ltpg, Flag *pOverflow ) argument
[all...]
H A Dgain_q.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
154 When the code is written for a specific target processor the
254 When the code is written for a specific target processor the
341 When the code is written for a specific target processor the
388 code -- Word16 array -- CB innovation (unfiltered), Q13
445 When the code is written for a specific target processor the
472 Word16 code[], /* i : CB innovation (unfiltered), Q13 */
523 /* (note that code[] is unsharpened in MR475) */
527 code,
584 /* (note that code[] i
467 gainQuant( gainQuantState *st, enum Mode mode, Word16 res[], Word16 exc[], Word16 code[], Word16 xn[], Word16 xn2[], Word16 y1[], Word16 Y2[], Word16 g_coeff[], Word16 even_subframe, Word16 gp_limit, Word16 *sf0_gain_pit, Word16 *sf0_gain_cod, Word16 *gain_pit, Word16 *gain_cod, Word16 **anap, Flag *pOverflow ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dvlc_encode.cpp151 uint code, len; local
163 code = ((TotalCoeff - 1) << 2) | (TrailingOnes);
167 code = 3;
169 status = BitstreamWriteBits(stream, 6, code);
187 code = totCoeffTrailOne[vlcnum][TrailingOnes][TotalCoeff][1];
188 status = BitstreamWriteBits(stream, len, code);
205 uint code, len; local
208 code = totCoeffTrailOneChrom[TrailingOnes][TotalCoeff][1];
209 status = BitstreamWriteBits(stream, len, code);
254 int len, code; local
282 int len, code; local
318 int len, code; local
[all...]
/frameworks/av/media/mtp/
H A DMtpDataPacket.cpp46 void MtpDataPacket::setOperationCode(MtpOperationCode code) { argument
47 MtpPacket::putUInt16(MTP_CONTAINER_CODE_OFFSET, code);
H A DMtpPacket.cpp119 void MtpPacket::setContainerCode(uint16_t code) { argument
120 putUInt16(MTP_CONTAINER_CODE_OFFSET, code);
/frameworks/base/core/java/android/nfc/
H A DErrorCodes.java28 public static boolean isError(int code) { argument
29 if (code < 0) {
36 public static String asString(int code) { argument
37 switch (code) {
/frameworks/base/core/java/android/os/
H A DIBinder.java87 * The first transaction code available for user commands.
91 * The last transaction code available for user commands.
96 * IBinder protocol transaction code: pingBinder().
101 * IBinder protocol transaction code: dump internal state.
106 * IBinder protocol transaction code: interrogate the recipient side
112 * IBinder protocol transaction code: send a tweet to the target
119 * across the platform. To support older code, the default implementation
130 * IBinder protocol transaction code: tell an app asynchronously that the
212 * @param code The action to perform. This should
223 public boolean transact(int code, Parce argument
[all...]
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java38 int code; field in class:AsyncPlayer.Command
46 return "{ code=" + code + " looping=" + looping + " attr=" + attributes
93 switch (cmd.code) {
198 cmd.code = PLAY;
220 cmd.code = STOP;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java36 // MTP property code
37 int code; field in class:MtpPropertyGroup.Property
43 Property(int code, int type, int column) { argument
44 this.code = code;
91 private Property createProperty(int code, ArrayList<String> columns) { argument
95 switch (code) {
188 Log.e(TAG, "unsupported property " + code);
194 return new Property(code, type, columns.size() - 1);
196 return new Property(code, typ
[all...]
/frameworks/base/obex/javax/obex/
H A DServerSession.java11 * - Redistributions of source code must retain the above copyright notice,
158 * create a <code>HeaderSet</code> object to pass to the
159 * <code>ServerRequestHandler</code> object. After the handler processes the
165 int code = ResponseCodes.OBEX_HTTP_OK;
172 code = ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE;
177 code = mListener.onAbort(request, reply);
178 Log.v(TAG, "onAbort request handler return value- " + code);
179 code
263 sendResponse(int code, byte[] header) argument
711 validateResponseCode(int code) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonEvent.java39 private NativeDaemonEvent(int cmdNumber, int code, String message, argument
42 mCode = code;
109 private static boolean isClassUnsolicited(int code) { argument
110 return code >= 600 && code < 700;
114 * Verify this event matches the given code.
118 public void checkCode(int code) { argument
119 if (mCode != code) {
120 throw new IllegalStateException("Expected " + code + " but was: " + this);
138 final int code;
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DIntentFilterVerificationState.java104 public boolean setVerifierResponse(int callerUid, int code) { argument
107 if (code == PackageManager.INTENT_FILTER_VERIFICATION_SUCCESS) {
109 } else if (code == PackageManager.INTENT_FILTER_VERIFICATION_FAILURE) {
116 Slog.d(TAG, "Cannot set verifier response with callerUid:" + callerUid + " and code:" +
117 code + " as required verifierUid is:" + mRequiredVerifierUid);
/frameworks/base/telecomm/java/android/telecom/
H A DDisconnectCause.java27 * Describes the cause of a disconnected call. This always includes a code describing the generic
76 * @param code The code for the disconnect cause.
78 public DisconnectCause(int code) { argument
79 this(code, null, null, null, ToneGenerator.TONE_UNKNOWN);
85 * @param code The code for the disconnect cause.
88 public DisconnectCause(int code, String reason) { argument
89 this(code, null, null, reason, ToneGenerator.TONE_UNKNOWN);
96 * @param code Th
100 DisconnectCause(int code, CharSequence label, CharSequence description, String reason) argument
113 DisconnectCause(int code, CharSequence label, CharSequence description, String reason, int toneToPlay) argument
[all...]
/frameworks/base/tools/aapt2/
H A DManifestValidator.cpp34 android::ResXMLParser::event_code_t code; local
35 while ((code = parser->next()) != android::ResXMLParser::END_DOCUMENT &&
36 code != android::ResXMLParser::BAD_DOCUMENT) {
37 if (code != android::ResXMLParser::START_TAG) {
/frameworks/native/cmds/service/
H A Dservice.cpp131 int32_t code = atoi(argv[optind++]); local
275 service->transact(code, data, &reply);
286 aerr << "service: No code specified for call" << endl;
/frameworks/native/libs/binder/
H A DIServiceManager.cpp190 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
193 switch(code) {
227 return BBinder::onTransact(code, data, reply, flags);
189 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/native/libs/gui/
H A DISurfaceComposerClient.cpp108 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
110 switch(code) {
149 return BBinder::onTransact(code, data, reply, flags);
107 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/native/services/surfaceflinger/
H A DClient.cpp89 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
105 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
88 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java30 public int code; field in class:SuppServiceNotification
65 + " code: " + code
/frameworks/av/camera/
H A DICameraService.cpp71 // Binder should be handling this code inside Parcel::readException
341 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
343 switch(code) {
528 return BBinder::onTransact(code, data, reply, flags);
340 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument

Completed in 320 milliseconds

12345678910