Searched defs:code (Results 101 - 125 of 277) sorted by relevance

1234567891011>>

/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: execute a shell command.
112 * IBinder protocol transaction code: interrogate the recipient side
118 * IBinder protocol transaction code: send a tweet to the target
125 * across the platform. To support older code, the default implementation
136 * IBinder protocol transaction code: tell an app asynchronously that the
224 * @param resultReceiver Called when the command has finished executing, with the result code
245 transact(int code, Parcel data, Parcel reply, int flags) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAsyncPlayer.java39 int code; field in class:AsyncPlayer.Command
47 return "{ code=" + code + " looping=" + looping + " attr=" + attributes
94 switch (cmd.code) {
200 cmd.code = PLAY;
222 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;
89 private Property createProperty(int code, ArrayList<String> columns) { argument
93 switch (code) {
186 Log.e(TAG, "unsupported property " + code);
192 return new Property(code, type, columns.size() - 1);
194 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,
157 * create a <code>HeaderSet</code> object to pass to the
158 * <code>ServerRequestHandler</code> object. After the handler processes the
164 int code = ResponseCodes.OBEX_HTTP_OK;
171 code = ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE;
176 code = mListener.onAbort(request, reply);
177 Log.v(TAG, "onAbort request handler return value- " + code);
178 code
262 sendResponse(int code, byte[] header) argument
715 validateResponseCode(int code) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonEvent.java41 private NativeDaemonEvent(int cmdNumber, int code, String message, argument
44 mCode = code;
116 private static boolean isClassUnsolicited(int code) { argument
117 return code >= 600 && code < 700;
121 * Verify this event matches the given code.
125 public void checkCode(int code) { argument
126 if (mCode != code) {
127 throw new IllegalStateException("Expected " + code + " but was: " + this);
145 final int code;
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DIntentFilterVerificationState.java109 public boolean setVerifierResponse(int callerUid, int code) { argument
112 if (code == PackageManager.INTENT_FILTER_VERIFICATION_SUCCESS) {
114 } else if (code == PackageManager.INTENT_FILTER_VERIFICATION_FAILURE) {
121 Slog.d(TAG, "Cannot set verifier response with callerUid:" + callerUid + " and code:" +
122 code + " as required verifierUid is:" + mRequiredVerifierUid);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DMethodCallExpr.java69 KCode code = new KCode()
74 appendArgs(code);
75 code.app(")");
76 return code;
85 private void appendArgs(KCode code) { argument
91 code.app(", ");
93 code.app("", arg.toCode());
/frameworks/native/cmds/service/
H A Dservice.cpp133 int32_t code = atoi(argv[optind++]); local
277 service->transact(code, data, &reply);
288 aerr << "service: No code specified for call" << endl;
/frameworks/native/libs/gui/
H A DIGraphicBufferConsumer.cpp178 status_t BnGraphicBufferConsumer::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
180 if (code < IBinder::FIRST_CALL_TRANSACTION || code > static_cast<uint32_t>(Tag::LAST)) {
181 return BBinder::onTransact(code, data, reply, flags);
183 auto tag = static_cast<Tag>(code);
/frameworks/native/libs/sensor/
H A DISensorEventConnection.cpp110 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
112 switch(code) {
155 return BBinder::onTransact(code, data, reply, flags);
109 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DISensorServer.cpp149 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
151 switch(code) {
225 return BBinder::onTransact(code, data, reply, flags);
148 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/native/services/audiomanager/
H A DIPlayer.cpp129 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
131 switch (code) {
185 return BBinder::onTransact(code, data, reply, flags);
128 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/native/services/vr/virtual_touchpad/tests/
H A DVirtualTouchpad_test.cpp19 void WriteInputEvent(uint16_t type, uint16_t code, int32_t value) { argument
23 event.code = code;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java30 public int code; field in class:SuppServiceNotification
68 + " code: " + code
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DSmsSessionEventBuilder.java47 public SmsSessionEventBuilder setErrorCode(int code) { argument
48 mEvent.errorCode = code;
/frameworks/rs/rsov/compiler/
H A DBuiltin.cpp90 const uint32_t extOpCode = p->code;
258 uint32_t code; member in struct:android::spirit::BuiltinLookupTable::sNameCode
278 // converter generated code.
/frameworks/av/drm/libmediadrm/
H A DICrypto.cpp238 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
239 switch (code) {
457 return BBinder::onTransact(code, data, reply, flags);
237 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
/frameworks/av/media/common_time/
H A DICommonClock.cpp237 status_t BnCommonClock::onTransact(uint32_t code, argument
241 switch(code) {
392 return BBinder::onTransact(code, data, reply, flags);
420 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
421 switch(code) {
430 return BBinder::onTransact(code, data, reply, flags);
419 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICommonTimeConfig.cpp324 status_t BnCommonTimeConfig::onTransact(uint32_t code, argument
328 switch(code) {
505 return BBinder::onTransact(code, data, reply, flags);
/frameworks/av/media/libaudioclient/
H A DIAudioTrack.cpp201 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
203 switch (code) {
292 return BBinder::onTransact(code, data, reply, flags);
200 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libmedia/
H A DIHDCP.cpp172 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
173 switch (code) {
196 return BBinder::onTransact(code, data, reply, flags);
201 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
202 switch (code) {
355 return BBinder::onTransact(code, data, reply, flags);
171 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
200 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
H A DIMediaExtractor.cpp150 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
152 switch (code) {
221 return BBinder::onTransact(code, data, reply, flags);
149 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIMediaMetadataRetriever.cpp208 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
210 switch (code) {
321 return BBinder::onTransact(code, data, reply, flags);
207 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Ddec_amr.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
208 When the code is written for a specific target processor the
375 When the code is written for a specific target processor the
562 Word16 code[L_SUBFR];
709 * - decode algebraic code *
837 decode_2i40_9bits (subfrNr, i, index, code);
846 decode_2i40_11bits (i, index, code);
855 decode_3i40_14bits (i, index, code);
864 decode_4i40_17bits (i, index, code);
870 dec_8i40_31bits (parm, code);
1360 Word16 code[L_SUBFR]; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dc2_11pf.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
73 * The code length is 40, containing 2 nonzero pulses: i0...i1.
159 code[], Innovative codebook, array of type Word16
179 The code length is 40, containing 2 nonzero pulses: i0...i1.
208 When the code is written for a specific target processor the
233 Word16 code[], /* o : Innovative codebook */
303 code,
311 * Include fixed-gain pitch contribution into code[].
320 code[i - T0],
324 code[
227 code_2i40_11bits( Word16 x[], Word16 h[], Word16 T0, Word16 pitch_sharp, Word16 code[], Word16 y[], Word16 * sign, Flag * pOverflow ) argument
[all...]

Completed in 8466 milliseconds

1234567891011>>