Searched defs:code (Results 51 - 75 of 277) sorted by relevance

1234567891011>>

/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp70 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
72 switch (code) {
78 return BBinder::onTransact(code, data, reply, flags);
69 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/services/mediaextractor/
H A DMediaExtractorService.cpp59 status_t MediaExtractorService::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
62 return BnMediaExtractorService::onTransact(code, data, reply, flags);
/frameworks/av/services/medialog/
H A DIMediaLogService.cpp75 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
77 switch (code) {
102 return BBinder::onTransact(code, data, reply, flags);
74 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DMediaLogService.cpp92 // FIXME merge with similar but not identical code at services/audioflinger/ServiceUtilities.cpp
136 status_t MediaLogService::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
139 return BnMediaLogService::onTransact(code, data, reply, flags);
/frameworks/base/core/java/android/content/
H A DUriMatcher.java27 <p>To use this class, build up a tree of <code>UriMatcher</code> objects.
127 * @param code the code to match for the root URI
129 public UriMatcher(int code) argument
131 mCode = code;
146 * Add a URI to match, and the code to return when this URI is
157 * @param code the code that is returned when a URI is matched
160 public void addURI(String authority, String path, int code) argument
[all...]
/frameworks/base/core/java/android/os/
H A DHwBinder.java39 int code, HwParcel request, HwParcel reply, int flags)
43 int code, HwParcel request, HwParcel reply, int flags)
38 transact( int code, HwParcel request, HwParcel reply, int flags) argument
42 onTransact( int code, HwParcel request, HwParcel reply, int flags) argument
H A DHwRemoteBinder.java42 int code, HwParcel request, HwParcel reply, int flags)
41 transact( int code, HwParcel request, HwParcel reply, int flags) argument
H A DIHwBinder.java26 int code, HwParcel request, HwParcel reply, int flags)
25 transact( int code, HwParcel request, HwParcel reply, int flags) argument
/frameworks/base/media/java/android/mtp/
H A DMtpDeviceInfo.java76 * Returns operation code supported by the device.
78 * @return supported operation code. Can be null if device does not provide the property.
120 * Returns event code supported by the device.
122 * @return supported event code. Can be null if device does not provide the property.
148 * @param code Operation code.
151 public boolean isOperationSupported(int code) { argument
152 return isSupported(mOperationsSupported, code);
157 * @param code Event code
160 isEventSupported(int code) argument
168 isSupported(@onNull int[] set, int code) argument
[all...]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDeviceRecord.java46 static boolean isSupported(@Nullable int[] supportedList, int code) { argument
51 if (supportedList[i] == code) {
/frameworks/base/telephony/java/com/android/ims/
H A DImsSuppServiceNotification.java37 public int code; field in class:ImsSuppServiceNotification
57 ", code=" + code +
73 out.writeInt(code);
82 code = in.readInt();
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64CA53Erratum835769Stub.cpp51 ErratumSequence code; local
52 pFragRef.memcpy(&code, sizeof(ErratumSequence), 0);
54 if (AArch64InsnHelpers::isMLXL(code.insns[1]) &&
55 AArch64InsnHelpers::isMemOp(code.insns[0], rt, rt2, is_pair, is_load)) {
58 if (AArch64InsnHelpers::getBit(code.insns[0], 26) != 0) {
63 unsigned ra = AArch64InsnHelpers::getRa(code.insns[1]);
64 unsigned rm = AArch64InsnHelpers::getRm(code.insns[1]);
65 unsigned rn = AArch64InsnHelpers::getRn(code.insns[1]);
/frameworks/native/libs/binder/
H A DIPermissionController.cpp88 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
90 switch(code) {
126 return BBinder::onTransact(code, data, reply, flags);
87 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/native/libs/gui/
H A DIConsumerListener.cpp79 status_t BnConsumerListener::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
81 if (code < IBinder::FIRST_CALL_TRANSACTION || code > static_cast<uint32_t>(Tag::LAST)) {
82 return BBinder::onTransact(code, data, reply, flags);
84 auto tag = static_cast<Tag>(code);
H A DISurfaceComposerClient.cpp86 status_t BnSurfaceComposerClient::onTransact(uint32_t code, const Parcel& data, Parcel* reply, argument
88 if (code < IBinder::FIRST_CALL_TRANSACTION || code > static_cast<uint32_t>(Tag::LAST)) {
89 return BBinder::onTransact(code, data, reply, flags);
91 auto tag = static_cast<Tag>(code);
/frameworks/native/services/batteryservice/
H A DIBatteryPropertiesRegistrar.cpp73 status_t BnBatteryPropertiesRegistrar::onTransact(uint32_t code, argument
78 switch(code) {
113 return BBinder::onTransact(code, data, reply, flags);
/frameworks/av/camera/
H A DICameraRecordingProxy.cpp111 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
113 switch(code) {
169 return BBinder::onTransact(code, data, reply, flags);
110 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICameraRecordingProxyListener.cpp103 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
105 switch(code) {
171 return BBinder::onTransact(code, data, reply, flags);
102 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libaudioclient/
H A DIAudioPolicyServiceClient.cpp103 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
105 switch (code) {
138 return BBinder::onTransact(code, data, reply, flags);
102 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIEffectClient.cpp95 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
97 switch (code) {
138 return BBinder::onTransact(code, data, reply, flags);
94 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libmedia/
H A DIMediaExtractorService.cpp79 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
81 switch (code) {
118 return BBinder::onTransact(code, data, reply, flags);
78 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libmediametrics/
H A DIMediaAnalyticsService.cpp115 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
125 ALOGD("running in service, code %d, pid %d; called from pid %d",
126 code, getpid(), clientPid);
129 switch (code) {
159 return BBinder::onTransact(code, data, reply, flags);
114 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dspstproc.cpp22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
109 code -- Word16 Array -- Fixed codebook exitation
152 When the code is written for a specific target processor the
181 Word16 code[], /* i : Fixed codebook exitation */
240 p_code = &code[0];
244 /* exc[i] = gain_pit*exc[i] + gain_code*code[i]; */
254 * code Q12 Q13
172 subframePostProc( Word16 *speech, enum Mode mode, Word16 i_subfr, Word16 gain_pit, Word16 gain_code, Word16 *Aq, Word16 synth[], Word16 xn[], Word16 code[], Word16 y1[], Word16 y2[], Word16 *mem_syn, Word16 *mem_err, Word16 *mem_w0, Word16 *exc, Word16 *sharp, Flag *pOverflow ) argument
/frameworks/av/radio/
H A DIRadioService.cpp117 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
119 switch(code) {
177 return BBinder::onTransact(code, data, reply, flags);
116 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/soundtrigger/
H A DISoundTrigger.cpp123 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
125 switch(code) {
173 return BBinder::onTransact(code, data, reply, flags);
122 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument

Completed in 361 milliseconds

1234567891011>>