Searched defs:type (Results 276 - 300 of 940) sorted by relevance

<<11121314151617181920>>

/frameworks/opt/net/voip/src/jni/rtp/
H A DAmrCodec.cpp103 Frame_Type_3GPP type; local
106 samples, bytes + 1, &type, AMR_TX_WMF);
108 if (type != mMode || length != (8 + gFrameBits[mMode] + 7) >> 3) {
134 Frame_Type_3GPP type; local
144 type = (Frame_Type_3GPP)(bytes[1] >> 3);
145 if (length != (16 + gFrameBits[type] + 7) >> 3) {
154 type = (Frame_Type_3GPP)((bytes[0] << 1 | bytes[1] >> 7) & 0x07);
155 if (length != (10 + gFrameBits[type] + 7) >> 3) {
165 length = (gFrameBits[type] + 7) >> 3;
169 if (AMRDecode(mDecoder, type, byte
227 Frame_Type_3GPP type; local
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DTelephonyUtil.java250 // Then, in case of failure, issue may be due to sim type, retry as a simple sim
311 public SimAuthResponseData(String type, String response) { argument
312 this.type = type;
316 public String type; field in class:TelephonyUtil.SimAuthResponseData
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
H A DPasspointNetworkScoreTest.java55 NetworkDetail.Ant type, Map<ANQPElementType, ANQPElement> elements,
61 networkType = type;
311 * @param networkType The type of the network
54 TestData(boolean homeProvider, boolean activeNetwork, int rssi, boolean internet, NetworkDetail.Ant type, Map<ANQPElementType, ANQPElement> elements, int score) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DHardwareConfig.java76 * type - see DEV_HARDWARE_TYPE_
80 public int type; field in class:HardwareConfig
84 * following is some specific hardware configuration based on the hardware type.
114 public HardwareConfig(int type) { argument
115 this.type = type;
124 type = Integer.parseInt(split[0]);
126 switch (type) {
152 if (type == DEV_HARDWARE_TYPE_MODEM) {
168 if (type
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java43 public final String type; field in class:DataCallResponse
75 public DataCallResponse(int status, int suggestedRetryTime, int cid, int active, String type, argument
82 this.type = (type == null) ? "" : type;
102 .append(" type=").append(type)
H A DDataProfile.java44 //the profile type, TYPE_COMMON, TYPE_3GPP, TYPE_3GPP2
45 public final int type; field in class:DataProfile
65 //the MVNO type: possible values are "imsi", "gid", "spn"
75 String user, String password, int type, int maxConnsTime, int maxConns,
90 this.type = type;
122 + "/" + user + "/" + password + "/" + type + "/" + maxConnsTime
74 DataProfile(int profileId, String apn, String protocol, int authType, String user, String password, int type, int maxConnsTime, int maxConns, int waitTime, boolean enabled, int supportedApnTypesBitmap, String roamingProtocol, int bearerBitmap, int mtu, String mvnoType, String mvnoMatchData, boolean modemCognitive) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java33 /** TS 27.007 7.17 "type" (MT only) */
34 public int type; field in class:SuppServiceNotification
72 + PhoneNumberUtils.stringFromStringAndTOA(number, type) + "\" ";
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DSmsSessionEventBuilder.java33 public SmsSessionEventBuilder(int type) { argument
34 mEvent.type = type;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardProperty.java154 public Collection<String> getParameters(String type) { argument
155 return mParameterMap.get(type);
/frameworks/rs/tests/java_api/GenImages/src/com/android/rs/genimage/
H A DGenImage.java81 public static int loadShader(int type, String shaderCode){ argument
83 // create a vertex shader type (GLES20.GL_VERTEX_SHADER)
84 // or a fragment shader type (GLES20.GL_FRAGMENT_SHADER)
85 int shader = GLES20.glCreateShader(type);
/frameworks/support/compat/java/android/support/v4/content/
H A DContextCompat.java268 public static File[] getExternalFilesDirs(Context context, String type) { argument
270 return context.getExternalFilesDirs(type);
272 return new File[] { context.getExternalFilesDir(type) };
347 * This integer encodes the package, type, and resource entry.
380 * tool. This integer encodes the package, type, and resource
402 * tool. This integer encodes the package, type, and resource
/frameworks/support/compat/java/android/support/v4/view/
H A DViewParentCompat.java238 * {@link #onStartNestedScroll(ViewParent, View, View, int, int)} using the touch input type.
256 * {@link #onNestedScrollAccepted(ViewParent, View, View, int, int)} using the touch input type.
273 * using the touch input type.</p>
286 * type.</p>
305 * type.</p>
337 * @param type the type of input which cause this scroll event
341 int nestedScrollAxes, int type) {
345 nestedScrollAxes, type);
346 } else if (type
340 onStartNestedScroll(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
370 onNestedScrollAccepted(ViewParent parent, View child, View target, int nestedScrollAxes, int type) argument
394 onStopNestedScroll(ViewParent parent, View target, int type) argument
426 onNestedScroll(ViewParent parent, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int type) argument
459 onNestedPreScroll(ViewParent parent, View target, int dx, int dy, int[] consumed, int type) argument
[all...]
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java34 * Window type: This is an application window. Such a window shows UI for
40 * Window type: This is an input method window. Such a window shows UI for
46 * Window type: This is an system window. Such a window shows UI for
52 * Window type: Windows that are overlaid <em>only</em> by an {@link
57 * these windows or can type into these windows. For example, if there
65 * Window type: A system window used to divide the screen in split-screen mode.
66 * This type of window is present only in split-screen mode.
88 * Gets the type of the window.
90 * @return The type.
347 builder.append(", type
358 typeToString(int type) argument
[all...]
/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java90 * a nested scroll in progress with the type of touch.
104 * a nested scroll in progress with the given type.
112 public boolean hasNestedScrollingParent(@NestedScrollType int type) { argument
113 return getNestedScrollingParentForType(type) != null;
143 public boolean startNestedScroll(@ScrollAxis int axes, @NestedScrollType int type) { argument
144 if (hasNestedScrollingParent(type)) {
152 if (ViewParentCompat.onStartNestedScroll(p, child, mView, axes, type)) {
153 setNestedScrollingParentForType(type, p);
154 ViewParentCompat.onNestedScrollAccepted(p, child, mView, axes, type);
184 public void stopNestedScroll(@NestedScrollType int type) { argument
216 dispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, @Nullable int[] offsetInWindow, @NestedScrollType int type) argument
275 dispatchNestedPreScroll(int dx, int dy, @Nullable int[] consumed, @Nullable int[] offsetInWindow, @NestedScrollType int type) argument
381 getNestedScrollingParentForType(@estedScrollType int type) argument
391 setNestedScrollingParentForType(@estedScrollType int type, ViewParent p) argument
[all...]
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestPlayStreamType.cpp47 /* Play an audio URIs on the given stream type */
48 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type) argument
139 /* Set the Android audio stream type on the player */
141 SL_ANDROID_KEY_STREAM_TYPE, &type, sizeof(SLint32));
143 fprintf(stderr, "invalid stream type %d\n", type);
192 /* Get the stream type during playback */
199 fprintf(stderr, "ERROR: size for stream type is %u, should be %zu\n",
205 if (currentType != type) {
206 fprintf(stderr, "ERROR: stream type i
[all...]
/frameworks/av/cmds/screenrecord/
H A DProgram.cpp71 status_t Program::setup(ProgramType type) { argument
72 ALOGV("Program::setup type=%d", type);
75 mProgramType = type;
78 if (type == PROGRAM_TEXTURE_2D) {
151 ALOGE("Compile of shader type %d failed", shaderType);
279 ALOGE("unexpected program type %d", mProgramType);
/frameworks/av/include/media/
H A DIOMX.h141 // 2) type kBufferTypeANWBuffer for non-meta-graphic buffer mode,
142 // 3) type kBufferTypeSharedMem for bytebuffer mode.
181 } type; member in struct:android::omx_message
186 // if type == EVENT
195 // if type == EMPTY_BUFFER_DONE
200 // if type == FILL_BUFFER_DONE
209 // if type == FRAME_RENDERED
H A DInterpolator.h261 int32_t type; local
263 status_t res = parcel.readInt32(&type)
267 ?: setInterpolatorType((InterpolatorType)type);
H A DTypeConverter.h191 typename Traits::Type type; local
192 if (fromString(cstr, type)) {
193 value |= static_cast<uint32_t>(type);
/frameworks/av/include/media/stagefright/foundation/
H A DAData.h31 * AData is a flexible union type that supports non-POD members. It supports arbitrary types as long
35 * be used by generic code as it is very unsafe - it opens type aliasing errors where an object of
36 * one type can be easily accessed as an object of another type. AData prevents this.
38 * AData allows a custom type flagger to be used for future extensions (e.g. allowing automatic
39 * type conversion). A strict and a relaxed flagger are provided as internal types.
43 * AData<int, float>::Basic data; // strict type support
57 * AData<int, sp<RefBase>>::RelaxedBasic objdata; // relaxed type support
77 * Helper class to call constructor and destructor for a specific type in AUnion.
83 * Calls placement constuctor for type
490 typedef Flag type; ///< flag type typedef in struct:android::AData::flagger
570 typedef Flag type; ///< flag type typedef in struct:android::AData::relaxed_flagger
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffHelpers.h102 inline size_t getTypeSize(TagType type) { argument
103 switch(type) {
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp190 int type = entry->d_type; local
191 if (type == DT_UNKNOWN) {
192 // If the type is unknown, stat() the file instead.
197 type = DT_REG;
199 type = DT_DIR;
205 if (type == DT_DIR) {
228 } else if (type == DT_REG) {
H A DVisualizer.cpp219 status_t Visualizer::getIntMeasurements(uint32_t type, uint32_t number, int32_t *measurements) { argument
224 if (!(mMeasurementMode & type)) {
225 // measurement type has not been set on this Visualizer
227 type, mMeasurementMode);
231 if ((type != MEASUREMENT_MODE_PEAK_RMS)
244 &type /*cmdData*/,
/frameworks/av/media/libmedia/include/media/
H A DIOMX.h141 // 2) type kBufferTypeANWBuffer for non-meta-graphic buffer mode,
142 // 3) type kBufferTypeSharedMem for bytebuffer mode.
181 } type; member in struct:android::omx_message
186 // if type == EVENT
195 // if type == EMPTY_BUFFER_DONE
200 // if type == FILL_BUFFER_DONE
209 // if type == FRAME_RENDERED
H A DTypeConverter.h191 typename Traits::Type type; local
192 if (fromString(cstr, type)) {
193 value |= static_cast<uint32_t>(type);

Completed in 1464 milliseconds

<<11121314151617181920>>