Searched refs:code (Results 251 - 275 of 364) sorted by relevance

<<1112131415

/frameworks/native/include/binder/
H A DBpBinder.h39 virtual status_t transact( uint32_t code,
/frameworks/native/include/gui/
H A DIGraphicBufferConsumer.h211 virtual status_t onTransact( uint32_t code,
/frameworks/av/media/libmedia/
H A DIOMX.cpp507 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
508 switch (code) {
605 switch (code) {
633 if ((code == GET_PARAMETER || code == GET_CONFIG) && err == OK) {
913 return BBinder::onTransact(code, data, reply, flags);
937 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
938 switch (code) {
953 return BBinder::onTransact(code, data, reply, flags);
506 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
936 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
H A DIMediaPlayerService.cpp211 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
213 switch (code) {
338 return BBinder::onTransact(code, data, reply, flags);
210 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/services/java/com/android/server/
H A DNsdService.java392 if (!handleNativeEvent(event.code, event.raw,
404 private boolean handleNativeEvent(int code, String raw, String[] cooked) { argument
429 switch (code) {
621 final int code; field in class:NsdService.NativeEvent
624 NativeEvent(int code, String raw) { argument
625 this.code = code;
635 public boolean onEvent(int code, String raw, String[] cooked) { argument
638 NativeEvent event = new NativeEvent(code, raw);
/frameworks/av/include/media/
H A DIOMX.h204 uint32_t code, const Parcel &data, Parcel *reply,
211 uint32_t code, const Parcel &data, Parcel *reply,
/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/core/java/android/net/
H A DVpnService.java95 * is an example of declaring a VPN service in {@code AndroidManifest.xml}:
125 * Prepare to establish a VPN connection. This method returns {@code null}
165 * @return {@code true} on success.
186 * @return {@code true} on success.
197 * @return {@code true} on success.
206 * {@code null} on {@link Intent}s other than {@link #SERVICE_INTERFACE}
240 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) { argument
241 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.java229 String code = l.toString();
232 if (specialLocaleCodes[i].equals(code)) {
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp244 // There is also a global font cache, but its budget is specified in code
309 static void runtime_exit(int code) argument
311 gCurRuntime->exit(code);
543 // Set the max jit code cache size. Note: size of 0 will disable the JIT.
904 void AndroidRuntime::exit(int code) argument
907 ALOGI("VM exiting with result code %d, cleanup skipped.", code);
908 ::_exit(code);
910 ALOGI("VM exiting with result code %d.", code);
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk44 # Don't prelink this library. For more efficient code, you may want
/frameworks/native/cmds/service/
H A Dservice.cpp131 int32_t code = atoi(argv[optind++]); local
248 service->transact(code, data, &reply);
259 aerr << "service: No code specified for call" << endl;
/frameworks/native/cmds/servicemanager/
H A Dservice_manager.c215 // ALOGI("target=%p code=%d pid=%d uid=%d\n",
216 // txn->target, txn->code, txn->sender_pid, txn->sender_euid);
233 switch(txn->code) {
264 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/av/media/libstagefright/chromium_http/
H A Dsupport.cpp80 // it to Java language code as a string, it ends up mangled on the other
319 int code = service->verifyX509CertChain(cert_chain, hostname, auth_type); local
320 ALOGV("verified: %d", code);
321 if (code == -1) {
323 } else if (code == 2) { // SSL_IDMISMATCH
325 } else if (code == 3) { // SSL_UNTRUSTED
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java103 public int code; field in class:GraphRunner.Event
106 public Event(int code, Object object) { argument
107 this.code = code;
131 switch (event.code) {
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java154 * @param errorCode error code of this error
609 * timed out if the call is not established within {@code timeout} seconds
616 * SIP protocol) is used if {@code timeout} is zero or negative.
662 * within {@code timeout} seconds and
667 * SIP protocol) is used if {@code timeout} is zero or negative.
687 * established within {@code timeout} seconds and
692 * SIP protocol) is used if {@code timeout} is zero or negative.
716 * out if the call is not established within {@code timeout} seconds and
721 * SIP protocol) is used if {@code timeout} is zero or negative.
895 * Sends a DTMF code
903 sendDtmf(int code) argument
917 sendDtmf(int code, Message result) argument
[all...]
/frameworks/av/camera/
H A DICamera.cpp278 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
280 switch(code) {
419 return BBinder::onTransact(code, data, reply, flags);
277 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICameraService.cpp69 // Binder should be handling this code inside Parcel::readException
243 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
245 switch(code) {
355 return BBinder::onTransact(code, data, reply, flags);
242 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/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/services/input/
H A DInputReader.h486 typedef int32_t (InputDevice::*GetStateFunc)(uint32_t sourceMask, int32_t code);
487 int32_t getStateLocked(int32_t deviceId, uint32_t sourceMask, int32_t code,
554 bool hasKey(int32_t code) { argument
555 return getEventHub()->hasScanCode(mId, code);
558 bool hasAbsoluteAxis(int32_t code) { argument
560 getEventHub()->getAbsoluteAxisInfo(mId, code, &info);
564 bool isKeyPressed(int32_t code) { argument
565 return getEventHub()->getScanCodeState(mId, code) == AKEY_STATE_DOWN;
568 int32_t getAbsoluteAxisValue(int32_t code) { argument
570 getEventHub()->getAbsoluteAxisValue(mId, code,
[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
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp175 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
177 switch(code) {
263 return BBinder::onTransact(code, data, reply, flags);
174 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument

Completed in 2303 milliseconds

<<1112131415