Searched defs:type (Results 51 - 75 of 634) sorted by relevance

1234567891011>>

/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioCodec.java39 * The RTP payload type of the encoding.
41 public final int type; field in class:AudioCodec
84 private AudioCodec(int type, String rtpmap, String fmtp) { argument
85 this.type = type;
100 * @param type The payload type of the encoding defined in RTP/AVP.
107 public static AudioCodec getCodec(int type, String rtpmap, String fmtp) { argument
108 if (type < 0 || type > 12
[all...]
H A DAudioStream.java116 * @throws IllegalArgumentException if its type is used by DTMF.
123 if (codec.type == mDtmfType) {
124 throw new IllegalArgumentException("The type is used by DTMF");
130 * Returns the RTP payload type for dual-tone multi-frequency (DTMF) digits,
140 * Sets the RTP payload type for dual-tone multi-frequency (DTMF) digits.
143 * RTP payload type for DTMF is assigned dynamically, so it must be in the
145 * the previous assigned type. This method cannot be called when the stream
148 * @param type The RTP payload type to be used or {@code -1} to disable it.
149 * @throws IllegalArgumentException if the type i
153 setDtmfType(int type) argument
[all...]
/frameworks/rs/cpu_ref/linkloader/lib/
H A DELFHeader.cpp64 char const *ELFHeaderHelperMixin::getObjectTypeStr(uint16_t type) { argument
65 switch (type) {
66 default: return "No file type";
/frameworks/rs/
H A Dspec.h15 int type; member in struct:__anon1563
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h40 downmix_type_t type; member in struct:__anon96
/frameworks/base/core/java/android/bluetooth/le/
H A DResultStorageDescriptor.java49 * @param type Type of the data.
53 public ResultStorageDescriptor(int type, int offset, int length) { argument
54 mType = type;
/frameworks/base/core/java/android/content/pm/
H A DPathPermission.java31 public PathPermission(String pattern, int type, String readPermission, argument
33 super(pattern, type);
/frameworks/base/core/java/android/net/
H A DPacProxySelector.java112 private static Proxy proxyFromHostPort(Proxy.Type type, String hostPortString) { argument
117 return new Proxy(type, InetSocketAddress.createUnresolved(host, port));
/frameworks/base/core/java/android/text/
H A DSpanSet.java39 SpanSet(Class<? extends E> type) { argument
40 classType = type;
/frameworks/base/core/java/android/util/
H A DProperty.java26 * @param <V> The type that this property represents.
38 * optional public <code>setName()</code> method which takes a value of the same type
41 * optional public <code>setName()</code> method which takes a value of the same type
59 * A constructor that takes an identifying name and {@link #getType() type} for the property.
61 public Property(Class<V> type, String name) { argument
63 mType = type;
101 * Returns the type for this property.
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java27 // Please do not add type constants in this class. More event type constants
58 * @param type Type of information.
62 protected DrmEvent(int uniqueId, int type, String message, argument
65 mType = type;
80 * @param type Type of information.
83 protected DrmEvent(int uniqueId, int type, String message) { argument
85 mType = type;
102 * Retrieves the type of information that is associated with this object.
104 * @return The type o
[all...]
/frameworks/base/media/java/android/media/
H A DAudioDevicePort.java22 * The AudioDevicePort is a specialized type of AudioPort
28 * - the device type (e.g AudioManager.DEVICE_OUT_SPEAKER)
40 int[] formats, AudioGain[] gains, int type, String address) {
42 (AudioManager.isInputDevice(type) == true) ?
45 mType = type;
50 * Get the device type (e.g AudioManager.DEVICE_OUT_SPEAKER)
52 public int type() { method in class:AudioDevicePort
57 * Get the device address. Address format varies with the device type.
90 String type = (mRole == ROLE_SOURCE ?
94 + ", mType: " + type
39 AudioDevicePort(AudioHandle handle, int[] samplingRates, int[] channelMasks, int[] formats, AudioGain[] gains, int type, String address) argument
[all...]
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java36 // list of data type codes (third field in quadruplet)
38 // list of long int property values (fourth field in quadruplet, when value is integer type)
40 // list of long int property values (fourth field in quadruplet, when value is string type)
53 public void append(int handle, int property, int type, long value) { argument
60 mDataTypes[index] = type;
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DSharedStorageAgent.java66 int type, String domain, String relpath, long mode, long mtime)
93 FullBackup.restoreFile(data, size, type, -1, mtime, outFile);
65 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String relpath, long mode, long mtime) argument
/frameworks/base/services/core/java/com/android/server/accounts/
H A DIAccountAuthenticatorCache.java38 * @param type the authenticator type to return
40 * matches the account type or null if none is present
43 AuthenticatorDescription type, int userId);
42 getServiceInfo( AuthenticatorDescription type, int userId) argument
/frameworks/base/tools/aapt/
H A DSymbol.h36 android::String16 type; member in struct:Symbol
64 , type(t)
72 android::String8(type).string(),
78 return (package < rhs.package) || (type < rhs.type) || (name < rhs.name) || (id < rhs.id);
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp16 VariableFactory::Get(Type* type) argument
21 Variable* v = new Variable(type, name);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DSystemViewInfo.java48 public void setViewType(ViewType type) { argument
49 mViewType = type;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DDynamicIdMap.java45 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
48 * @param type the type of the resource
53 public Integer getId(ResourceType type, String name) { argument
54 return getId(Pair.of(type, name));
58 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
61 * @param resource the type/name of the resource
/frameworks/base/tools/preload/
H A DOperation.java45 final Type type; field in class:Operation
58 int index, Type type) {
63 this.type = type;
98 switch (type) {
125 sb.append(type.toString());
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, int index, Type type) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h58 /// @param pType [in] the type of the relocation entry
67 /// type - relocation type
68 Type type() const function in class:mcld::Relocation
84 /// symbol info - binding, type
110 /// m_Type - the type of the relocation entries
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h50 uint32_t type; member in struct:android::DisplayEventReceiver::Event::Header
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp39 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
41 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
43 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
45 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
47 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
49 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
51 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
55 void glColorPointerBounds(GLint size, GLenum type, GLsizei stride, argument
57 glColorPointer(size, type, stride, ptr);
59 void glNormalPointerBounds(GLenum type, GLsize argument
63 glTexCoordPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
67 glVertexPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
72 glPointSizePointerOESBounds(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
77 glMatrixIndexPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
82 glWeightPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
[all...]
/frameworks/rs/driver/
H A DrsdVertexArray.h38 uint32_t type; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
/frameworks/wilhelm/src/android/
H A Dandroid_sles_conversions.h24 static inline SLuint32 android_to_sles_streamType(int type) { argument
25 return (SLuint32) type;
38 static inline int sles_to_android_streamType(SLuint32 type) { argument
39 return (int)type;

Completed in 934 milliseconds

1234567891011>>