Searched defs:type (Results 226 - 250 of 634) sorted by relevance

1234567891011>>

/frameworks/base/include/androidfw/
H A DCursorWindow.h46 * FieldSlot per column, which has the size, offset, and type of the data for that field.
65 /* Opaque type that describes a field slot. */
68 int32_t type; member in struct:android::CursorWindow::FieldSlot
117 return fieldSlot->type;
188 const void* value, size_t size, int32_t type);
/frameworks/base/keystore/java/android/security/
H A DCredentials.java73 /** Data type for public keys. */
76 /** Data type for private keys. */
156 throw new IllegalArgumentException("Unknown type " + o.getType());
201 public void install(Context context, String type, byte[] value) { argument
204 intent.putExtra(type, value);
218 * Make sure every type is deleted. There can be all three types, so
232 * Make sure every certificate type is deleted. There can be two types,
/frameworks/base/libs/androidfw/
H A DBackupData.cpp125 header.type = tolel(BACKUP_HEADER_ENTITY_V1);
230 BackupDataReader::ReadNextHeader(bool* done, int* type) argument
254 if (type) {
255 *type = m_header.type;
259 m_header.type = fromlel(m_header.type);
260 switch (m_header.type)
290 ALOGD("Chunk header at %d has invalid type: 0x%08x",
291 (int)(m_pos - sizeof(m_header)), (int)m_header.type);
[all...]
H A DCursorWindow.cpp283 const void* value, size_t size, int32_t type) {
300 fieldSlot->type = type;
316 fieldSlot->type = FIELD_TYPE_INTEGER;
331 fieldSlot->type = FIELD_TYPE_FLOAT;
346 fieldSlot->type = FIELD_TYPE_NULL;
282 putBlobOrString(uint32_t row, uint32_t column, const void* value, size_t size, int32_t type) argument
/frameworks/base/libs/common_time/
H A Dcommon_time_server_packets.h44 // type of the packet
57 void initHeader(TimeServicePacketType type, argument
62 packetType = type;
/frameworks/base/libs/hwui/
H A DDamageAccumulator.cpp35 TransformType type; member in struct:android::uirenderer::DirtyStack
52 mHead->type = TransformNone;
59 switch (currentFrame->type) {
70 LOG_ALWAYS_FATAL("Tried to compute transform with an invalid type: %d", currentFrame->type);
92 mHead->type = TransformRenderNode;
98 mHead->type = TransformMatrix4;
106 switch (dirtyFrame->type) {
117 LOG_ALWAYS_FATAL("Tried to pop an invalid type: %d", dirtyFrame->type);
[all...]
H A DDrawProfiler.cpp221 ProfileType type = kNone; local
225 type = kBars;
227 type = kConsole;
230 return type;
H A DMatrix.h66 // must be kept in sync with the type flags found
152 // Doing a translation will only affect the translate bit of the type
153 // Save the type
154 uint8_t type = mType; local
160 // Restore the type and fix the translate bit
161 mType = type;
H A DTessellationCache.h55 Type type; member in struct:android::uirenderer::TessellationCache::Description
72 Description(Type type, const Matrix4& transform, const SkPaint& paint);
H A DTextureCache.cpp361 GLsizei width, GLsizei height, GLenum type, const GLvoid * data) {
369 glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, type, data);
371 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, data);
393 glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, type, temp);
395 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, temp);
360 uploadToTexture(bool resize, GLenum format, GLsizei stride, GLsizei bpp, GLsizei width, GLsizei height, GLenum type, const GLvoid * data) argument
/frameworks/base/media/java/android/media/tv/
H A DITvInputSessionWrapper.java213 public void selectTrack(int type, String trackId) { argument
214 mCaller.executeOrSendMessage(mCaller.obtainMessageOO(DO_SELECT_TRACK, type, trackId));
H A DTvTrackInfo.java28 * The type value for audio tracks.
33 * The type value for video tracks.
38 * The type value for subtitle tracks.
52 private TvTrackInfo(int type, String id, String language, int audioChannelCount, argument
55 mType = type;
79 * Returns the type of the track. The type should be one of the followings:
216 * @param type The type of the track.
220 public Builder(int type, Strin argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodecList.cpp147 JNIEnv *env, jobject thiz, jint index, jstring type) {
148 if (type == NULL) {
165 const char *typeStr = env->GetStringUTFChars(type, NULL);
180 env->ReleaseStringUTFChars(type, typeStr);
146 android_media_MediaCodecList_getCodecCapabilities( JNIEnv *env, jobject thiz, jint index, jstring type) argument
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp362 int GLEnv::NumberOfComponents(GLenum type) { argument
363 switch (type) {
H A Dshader_program.h163 // When setting values, the value type must be match the type of the uniform
166 // Such a type mismatch will result in failure to set the value (which will
203 // of type float, float array (or vector), and int are supported.
219 // specific type, which can be any of the following:
249 // type: The type of the data values. This may differ from the type of the
260 GLenum type,
275 GLenum type,
417 GLenum type; member in struct:android::filterfw::ShaderProgram::VertexAttrib
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DCameraUtilsTypeReferenceTest.java57 private static void assertContainsTypeVariable(Type type) { argument
58 assertTrue(type.toString() + " was expected to have a type variable, but it didn't",
59 containsTypeVariable(type));
62 private static void assertLacksTypeVariable(Type type) { argument
63 assertFalse(type.toString() + " was expected to *not* have a type variable, but it did",
64 containsTypeVariable(type));
96 * type reference to {@code T} will contain a type variabl
[all...]
/frameworks/base/native/android/
H A Dsensor.cpp57 ASensor const* ASensorManager_getDefaultSensor(ASensorManager* manager, int type) argument
59 return static_cast<SensorManager*>(manager)->getDefaultSensor(type);
63 int type, bool wakeUp) {
67 if (ASensor_getType(sensorList[i]) == type &&
62 ASensorManager_getDefaultSensorEx(ASensorManager* manager, int type, bool wakeUp) argument
/frameworks/base/obex/javax/obex/
H A DClientOperation.java82 * @param type <code>true</code> if this is a get request;
87 public ClientOperation(int maxSize, ClientSession p, HeaderSet header, boolean type) argument
95 mGetOperation = type;
208 * Returns the type of content that the resource connected to is providing.
209 * E.g. if the connection is via HTTP, then the value of the content-type
211 * @return the content type of the resource that the URL references, or
411 * Sends a request to the client of the specified type
H A DServerOperation.java278 * @param type the response code to send back to the client
285 public synchronized boolean sendReply(int type) throws IOException { argument
330 mParent.sendResponse(type, sendHeader);
346 if (mGetOperation && type == ResponseCodes.OBEX_HTTP_OK) {
389 if ((finalBitSet) && (type == ResponseCodes.OBEX_HTTP_OK) && (orginalBodyLength <= 0)) {
399 mParent.sendResponse(type, out.toByteArray());
401 if (type == ResponseCodes.OBEX_HTTP_CONTINUE) {
577 * Returns the type of content that the resource connected to is providing.
578 * E.g. if the connection is via HTTP, then the value of the content-type
580 * @return the content type o
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11Ext.java127 int type,
134 int type,
141 int type,
148 int type,
125 glMatrixIndexPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
132 glMatrixIndexPointerOES( int size, int type, int stride, int offset ) argument
139 glWeightPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
146 glWeightPointerOES( int size, int type, int stride, int offset ) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java213 public void dump(PrintWriter pw, String type) { argument
216 pw.print(type);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DIntentTile.java93 private void sendIntent(String type, PendingIntent pi, String uri) { argument
102 Log.w(TAG, "Error sending " + type + " intent", t);
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java48 final int type; field in class:PendingIntentRecord.Key
66 type = _t;
108 if (type != other.type) {
172 switch (type) {
182 return Integer.toString(type);
231 switch (key.type) {
336 pw.print(" type="); pw.print(key.typeName());
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java195 * Display type.
197 public int type; field in class:DisplayDeviceInfo
201 * Interpretation varies by display type.
256 && type == other.type
283 type = other.type;
305 sb.append(", type ").append(Display.typeToString(type));
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageValidator.java57 public ValidationInfo(ParameterValidator validator, int type) { argument
59 addressType = type;
220 // Check the parameter type.
278 * Check if the given type is valid. A valid type is one of the actual logical device types
283 * @param type device type
284 * @return true if the given type is valid
286 static boolean isValidType(int type) { argument
287 return (HdmiDeviceInfo.DEVICE_TV <= type
[all...]

Completed in 376 milliseconds

1234567891011>>