Searched defs:code (Results 126 - 150 of 201) sorted by relevance

123456789

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dslice.cpp692 uint code; local
724 code = currMB->ref_idx_L0[mbPartIdx];
725 status = te_v(stream, code, max_ref_idx);
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp46 * ACTS-MoMuSys partners retain full right to use the code for his/her own
47 * purpose, assign or donate the code to a third party and to inhibit third
48 * parties from using the code for non MPEG-4 Video (ISO/IEC 14496-2) Standard
71 * Donated to the Momusys-project as background code by
106 uint32 code; local
109 BitstreamShowBits32(stream, 24, &code);
111 while (code != 1)
115 BitstreamShowBits32(stream, 24, &code);
128 * 3/29/00 : added return code check to some functions and
129 * optimize the code
455 uint code; local
505 uint code; local
538 uint code; local
559 uint code; local
593 uint code; local
631 uint code; local
841 uint code; local
1024 uint code; local
1203 uint code; local
1263 uint code; local
1318 uint code; local
1391 uint code; local
1473 uint code, mask; local
1556 uint code, mask; local
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp300 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
302 switch (code) {
319 return BnCameraService::onTransact(code, data, reply, flags);
299 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/cmds/servicemanager/
H A Dbinder.c47 fprintf(stderr," target %p cookie %p code %08x flags %08x\n",
48 txn->target, txn->cookie, txn->code, txn->flags);
177 data.txn.code = 0;
305 void *target, uint32_t code)
322 writebuf.txn.code = code;
303 binder_call(struct binder_state *bs, struct binder_io *msg, struct binder_io *reply, void *target, uint32_t code) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java77 * request code integers supplied to {@link #getActivity}, {@link #getActivities},
156 * @param resultCode The final result code determined by the send.
205 * @param requestCode Private request code for the sender (currently
232 * @param requestCode Private request code for the sender (currently
318 * @param requestCode Private request code for the sender (currently
364 * @param requestCode Private request code for the sender (currently
428 * @param requestCode Private request code for the sender (currently
478 * @param requestCode Private request code for the sender (currently
546 * @param code Result code t
553 send(int code) argument
572 send(Context context, int code, Intent intent) argument
593 send(int code, OnFinished onFinished, Handler handler) argument
629 send(Context context, int code, Intent intent, OnFinished onFinished, Handler handler) argument
670 send(Context context, int code, Intent intent, OnFinished onFinished, Handler handler, String requiredPermission) argument
[all...]
/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...]
H A DContentService.java120 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
123 return super.onTransact(code, data, reply, flags);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DGsmAlphabet.java90 * The number of code units consumed so far, where code units
98 * How many code units are still available without spilling
104 * The encoding code unit size (specified using
260 * boundary. This method is used by OEM code.
494 Log.w(TAG, "no language table for code " + languageTable + ", using default");
498 Log.w(TAG, "no single shift table for code " + shiftTable + ", using default");
883 // find the least cost encoding (lowest message count and most code units remaining)
942 * Returns the index into <code>s</code> o
1056 LanguagePairCount(int code) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java193 * a redirect code with the Location response header set to the value
196 * @param redirectCode The code to send when redirecting
198 public void setRedirect(String redirect, int code) { argument
200 redirectCode = code;
201 log("Server will redirect output to "+redirect+" code "+code);
225 // Networking code doesn't support ServerSocket(port) yet
H A DTestEventHandler.java154 * @param code The status code
158 int code, String reason_phrase) {
162 " code: " + code +
174 responseCode = code;
198 if (expectCode == code) {
201 expectDetails.append("Status code expected:"+expectCode+
202 " got:"+code);
453 * @param id Status code o
157 status(int major_version, int minor_version, int code, String reason_phrase) argument
622 expectStatus(int major, int minor, int code) argument
629 expectStatus(int code) argument
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.cpp200 ResXMLTree::event_code_t code; local
201 while ((code=inXml->next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
203 if (code == ResXMLTree::TEXT) {
223 } else if (code == ResXMLTree::START_TAG) {
283 } else if (code == ResXMLTree::END_TAG) {
350 } else if (code == ResXMLTree::START_NAMESPACE) {
355 if (code == ResXMLTree::BAD_DOCUMENT) {
421 ResXMLTree::event_code_t code; local
423 while ((code
[all...]
/frameworks/native/libs/binder/
H A DIMemory.cpp212 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
214 switch(code) {
225 return BBinder::onTransact(code, data, reply, flags);
367 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
369 switch(code) {
379 return BBinder::onTransact(code, data, reply, flags);
211 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
366 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp803 uint32_t code, const Parcel& data,
805 ALOGV("Entering BnDrmManagerService::onTransact with code %d", code);
807 switch (code) {
1518 return BBinder::onTransact(code, data, reply, flags);
802 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libmedia/
H A DIAudioPolicyService.cpp374 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
376 switch (code) {
636 return BBinder::onTransact(code, data, reply, flags);
373 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIMediaPlayer.cpp348 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
350 switch (code) {
541 return BBinder::onTransact(code, data, reply, flags);
347 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dc4t64fx.c122 Word16 code[], /* (o) Q9 : algebraic (fixed) codebook excitation */
717 code[i] = 0;
730 code[i] += val;
734 code[i] -= val;
118 ACELP_4t64_fx( Word16 dn[], Word16 cn[], Word16 H[], Word16 code[], Word16 y[], Word16 nbbits, Word16 ser_size, Word16 _index[] ) argument
/frameworks/av/media/mtp/
H A DMtpDevice.cpp538 MtpProperty* MtpDevice::getDevicePropDesc(MtpDeviceProperty code) { argument
542 mRequest.setParameter(1, code);
556 MtpProperty* MtpDevice::getObjectPropDesc(MtpObjectProperty code, MtpObjectFormat format) { argument
560 mRequest.setParameter(1, code);
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java839 public boolean onTransact(int code, Parcel data, Parcel reply, argument
841 switch (code) {
1158 return super.onTransact(code, data, reply, flags);
1308 * This value implies {@code force}.
1334 * @return a numerical value. See {@code ENCRYPTION_STATE_*} for possible values.
1368 * @return path to filesystem or {@code null} if it's not found
/frameworks/base/core/java/android/webkit/
H A DAccessibilityInjector.java114 // JS code used to shut down an active AndroidVox instance.
129 * {@code webViewClassic}.
201 final String code = String.format(TOGGLE_CVOX_TEMPLATE, state);
202 mWebView.loadUrl(code);
211 * {@link AccessibilityInjector} should also return {@code true} from
233 * Returns {@code true} if this {@link AccessibilityInjector} should handle
237 * @return {@code true} if this {@link AccessibilityInjector} should handle
257 * @param arguments The action arguments, or {@code null} if no arguments.
258 * @return {@code true} if the action was successful.
283 * @return {@code tru
824 performAction(WebView webView, String code) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_AudioRecord.cpp79 jint android_media_translateRecorderErrorCode(int code) { argument
80 switch (code) {
/frameworks/base/services/input/
H A DEventHub.h42 #define BTN_FIRST 0x100 // first button code
43 #define BTN_LAST 0x15f // last button code
61 int32_t code; member in struct:android::RawEvent
/frameworks/base/services/java/com/android/server/
H A DNsdService.java392 handleNativeEvent(event.code, event.raw,
486 int code; field in class:NsdService.NativeEvent
489 NativeEvent(int code, String raw) { argument
490 this.code = code;
500 public boolean onEvent(int code, String raw, String[] cooked) { argument
503 NativeEvent event = new NativeEvent(code, raw);
509 private void handleNativeEvent(int code, String raw, String[] cooked) { argument
524 switch (code) {
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java120 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
123 return super.onTransact(code, data, reply, flags);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestsExecutor.java701 public void setMockGeolocationError(int code, String message) { argument
702 WebViewClassic.fromWebView(mCurrentWebView).setMockGeolocationError(code, message);
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java159 * @param errorCode error code of this error
615 * timed out if the call is not established within {@code timeout} seconds
622 * SIP protocol) is used if {@code timeout} is zero or negative.
665 * within {@code timeout} seconds and
670 * SIP protocol) is used if {@code timeout} is zero or negative.
688 * established within {@code timeout} seconds and
693 * SIP protocol) is used if {@code timeout} is zero or negative.
715 * out if the call is not established within {@code timeout} seconds and
720 * SIP protocol) is used if {@code timeout} is zero or negative.
888 * Sends a DTMF code
896 sendDtmf(int code) argument
910 sendDtmf(int code, Message result) argument
[all...]

Completed in 439 milliseconds

123456789