Searched refs:code (Results 226 - 250 of 332) sorted by relevance

1234567891011>>

/frameworks/av/media/mtp/
H A DMtpServer.h111 void sendEvent(MtpEventCode code, uint32_t param1);
/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/include/storage/
H A DIMountService.h80 virtual status_t onTransact(uint32_t code, const Parcel& data,
/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) {
H A DNativeDaemonConnector.java45 * {@code libsysutils} FrameworkListener protocol.
372 * {@link NativeDaemonEvent#getMessage()} which match requested code.
382 final int code = event.getCode();
383 if (code == expectedCode) {
387 "unexpected list response " + code + " instead of " + expectedCode);
/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/include/binder/
H A DBpBinder.h39 virtual status_t transact( uint32_t code,
/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...]
/frameworks/base/cmds/service/
H A Dservice.cpp120 int32_t code = atoi(argv[optind++]); local
237 service->transact(code, data, &reply);
248 aerr << "service: No code specified for call" << endl;
/frameworks/base/cmds/servicemanager/
H A Dservice_manager.c213 // ALOGI("target=%p code=%d pid=%d uid=%d\n",
214 // txn->target, txn->code, txn->sender_pid, txn->sender_euid);
231 switch(txn->code) {
262 ALOGE("unknown code %d\n", txn->code);
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/net/
H A DVpnService.java94 * is an example of declaring a VPN service in {@code AndroidManifest.xml}:
124 * Prepare to establish a VPN connection. This method returns {@code null}
163 * @return {@code true} on success.
184 * @return {@code true} on success.
195 * @return {@code true} on success.
204 * {@code null} on {@link Intent}s other than {@link #SERVICE_INTERFACE}
238 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) { argument
239 if (code == IBinder.LAST_CALL_TRANSACTION) {
453 * for any reason. However, this method returns {@code null} if the
458 * {@code nul
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java195 String code = l.toString();
198 if (specialLocaleCodes[i].equals(code)) {
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp239 // There is also a global font cache, but its budget is specified in code
304 static void runtime_exit(int code) argument
306 gCurRuntime->exit(code);
905 void AndroidRuntime::exit(int code) argument
908 ALOGI("VM exiting with result code %d, cleanup skipped.", code);
909 ::_exit(code);
911 ALOGI("VM exiting with result code %d.", code);
912 onExit(code);
[all...]
/frameworks/compile/libbcc/runtime/make/
H A DAppleBI.mk25 # Copies source code to SRCROOT.
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk44 # Don't prelink this library. For more efficient code, you may want
/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...]
/frameworks/av/camera/
H A DICamera.cpp276 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
278 switch(code) {
414 return BBinder::onTransact(code, data, reply, flags);
275 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/common_time/
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/libmedia/
H A DIMediaRecorder.cpp290 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
292 switch (code) {
457 return BBinder::onTransact(code, data, reply, flags);
289 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/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/core/tests/coretests/src/android/app/activity/
H A DBroadcastTest.java200 public boolean onTransact(int code, Parcel data, Parcel reply,
204 if (code == GOT_RECEIVE_TRANSACTION) {
208 } else if (code == ERROR_TRANSACTION) {
292 assertEquals("Incorrect code: " + broadcastReceiver.getResultCode(),
/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
/frameworks/native/libs/gui/
H A DISurfaceComposer.cpp233 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
235 switch(code) {
336 return BBinder::onTransact(code, data, reply, flags);
232 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument

Completed in 323 milliseconds

1234567891011>>