/external/dexmaker/src/test/java/com/google/dexmaker/examples/ |
HelloWorldMaker.java | 36 dexMaker.declare(helloWorld, "HelloWorld.generated", Modifier.PUBLIC, TypeId.OBJECT);
|
FibonacciMaker.java | 37 dexMaker.declare(fibonacci, fileName, Modifier.PUBLIC, TypeId.OBJECT);
|
/external/tpm2/ |
Commit.c | 30 OBJECT *eccKey;
|
EncryptDecrypt.c | 27 OBJECT *symKey;
|
Import.c | 38 // TPM_RC_KDF objectPublic representing decrypting keyed hash object specifies 45 // TPM_RC_OBJECT_MEMORY no available object slot 48 // for keyed hash object 75 OBJECT *parentObject; 110 // If encryptedDuplication is SET, then the object must have an inner 131 // If encrytpedDuplication is set, then the object must have an outer 138 // Compute name of object 150 // If the parent of this object has fixedTPM SET, then fully validate this 151 // object so that validation can be skipped when it is loaded 165 // Create internal object. A TPM_RC_KEY_SIZE, TPM_RC_KEY o [all...] |
NV.c | 12 // NV Index/evict object iterator value 110 // NV Index and Persistent Object Access Functions 114 // These functions are used to access an NV Index and persistent object memory. In this implementation, 193 // This function returns the size of an evict object in NV space 200 return sizeof(TPM_HANDLE) + sizeof(OBJECT) + sizeof(UINT32); 275 // evict object, totalSize is the same as 304 // This function is used to delete an NV Index or persistent object from NV memory. 665 // This function indicates if a handle references a persistent object in the range belonging to the platform. 669 // TRUE handle references a platform persistent object 670 // FALSE handle does not reference platform persistent object and ma 1582 OBJECT object; local [all...] |
CryptUtil.c | 173 // Start a hash stack for a sequence object and return the size, in bytes, of the digest. This call uses the 627 OBJECT *signKey, // IN: HMAC key sign the hash 661 OBJECT *signKey, // IN: HMAC key signed the hash 684 // This function creates a keyedHash object. 700 TPM2B_NAME *name // IN: name of the object 773 // _cpri__ RSA function. This can/should be eliminated by building this structure into the object structure. 778 OBJECT *rsaKey, 859 TPM2B_NAME *name, // IN: Object name [all...] |
Object_spt.c | 71 OBJECT *protector = NULL; // Pointer to the protector object 99 // requires encrypting or decrypting of the sensitive area of an object or a credential blob 105 TPM2B_NAME *name, // IN: name of the object 115 OBJECT *protector = NULL; // Pointer to the protector 147 // of the remainder of the object. The size field of sensitive is in unmarshaled form and the sensitive area 152 TPM2B_NAME *name, // IN: the name of the object 153 TPM_HANDLE protectorHandle, // IN: The handle of the object that 154 // provides protection. For object, it 156 // is the handle of encrypt object. Fo [all...] |
Attest_spt.c | 27 TPMI_DH_OBJECT signHandle, // IN: handle of signing object 52 // Certifying object qualified name 64 // Get the hierarchy of sign object. For NULL sign handle, the hierarchy 69 // For sign object is not in platform or endorsement hierarchy, 80 OBJECT *signObject = NULL; 122 TPMI_DH_OBJECT signHandle, // IN: handle of sign object
|
/frameworks/wilhelm/src/ut/ |
OpenSLESUT.c | 76 _(OBJECT), 145 /** \brief Convert an object ID to a string or NULL. */
|
/cts/tools/dasm/src/dasm/ |
DasmCatchBuilder.java | 85 type = CstType.OBJECT; 204 if (type.equals(CstType.OBJECT)) {
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
TypeId.java | 64 /** The {@code Object} type. */ 65 public static final TypeId<Object> OBJECT = new TypeId<Object>(com.android.dx.rop.type.Type.OBJECT); 136 @Override public boolean equals(Object o) {
|
/frameworks/base/tools/layoutlib/create/tests/data/ |
mock_android.jar | |
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_screen.c | 397 FAIL_SCREEN_INIT("error allocating null object: %d\n", ret); 400 * this means that the address pointed at by the DMA object must 401 * be 4KiB aligned, which means this object needs to be the first 411 /* DMA_NOTIFY object, we don't actually use this but M2MF fails without */ 456 FAIL_SCREEN_INIT("error allocating 3d object: %d\n", ret); 458 BEGIN_NV04(push, NV01_SUBC(3D, OBJECT), 1); 528 FAIL_SCREEN_INIT("error allocating m2mf object: %d\n", ret); 530 BEGIN_NV04(push, NV01_SUBC(M2MF, OBJECT), 1); 538 FAIL_SCREEN_INIT("error allocating surf2d object: %d\n", ret); 540 BEGIN_NV04(push, NV01_SUBC(SF2D, OBJECT), 1) [all...] |
/frameworks/base/core/jni/ |
com_google_android_gles_jni_EGLImpl.cpp | 532 #define OBJECT "Ljava/lang/Object;" 547 {"eglCopyBuffers", "(" DISPLAY SURFACE OBJECT ")Z", (void*)jni_eglCopyBuffers }, 548 {"eglWaitNative", "(I" OBJECT ")Z", (void*)jni_eglWaitNative }, 551 {"_eglGetDisplay", "(" OBJECT ")J", (void*)jni_eglGetDisplay }, 556 {"_eglCreatePixmapSurface", "(" SURFACE DISPLAY CONFIG OBJECT "[I)V", (void*)jni_eglCreatePixmapSurface }, 557 {"_eglCreateWindowSurface", "(" DISPLAY CONFIG OBJECT "[I)J", (void*)jni_eglCreateWindowSurface }, 558 {"_eglCreateWindowSurfaceTexture", "(" DISPLAY CONFIG OBJECT "[I)J", (void*)jni_eglCreateWindowSurfaceTexture },
|
/dalvik/dx/src/com/android/dx/cf/code/ |
BytecodeArray.java | 201 * but {@code type} is passed as {@code Type.OBJECT} in 368 Type.OBJECT, 0); 413 Type.OBJECT, 0); 436 Type.OBJECT); 483 Type.OBJECT, 0); 528 Type.OBJECT, 0); 552 Type.OBJECT); 741 Type.OBJECT); [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
Type.java | 34 * be used when examining them. Normal java types must use {@link #equals(Object)} to 68 * It is important not to treat this type as java.lang.Object, since a null can 95 /** Represents the java.lang.Object reference type */ 96 public static final Type OBJECT = lookupType("java.lang.Object"); 172 * Returns whether or not this type is a normal java reference, i.e. it is or extends java.lang.Object. 366 // then Object is the common type. 368 return Type.OBJECT; 388 return createArray(OBJECT, targetDims); 451 // If its Object, then try and find a common interface(s [all...] |
/external/harfbuzz_ng/src/ |
hb-object-private.hh | 115 /* object */ 120 DEBUG_MSG (OBJECT, (void *) obj,
|
/external/v8/test/mjsunit/ |
generated-transition-stub.js | 112 // Test PACKED DOUBLE -> PACKED OBJECT 120 transition3(c1, 0, new Object()); 122 transition3(c2, 0, new Object()); 166 // Test HOLEY DOUBLE -> HOLEY OBJECT 174 transition4(d1, 0, new Object()); 176 transition4(d2, 0, new Object());
|
/frameworks/base/core/java/android/text/ |
PackedObjectVector.java | 32 private Object[] mValues; 38 mValues = EmptyArray.OBJECT; 51 Object value = mValues[row * mColumns + column]; 114 Object[] newvalues = ArrayUtils.newUnpaddedObjectArray( 143 Object val = mValues[i * mColumns + j]; 159 Object val = mValues[i * mColumns + j]; 176 Object val = mValues[i * mColumns + j];
|
/frameworks/base/core/java/android/util/ |
ArrayMap.java | 29 * codes for each item, and an Object array of the key/value pairs. This allows it to 30 * avoid having to create an extra object for every entry put in to the map, and it 74 * Object[] variable is a pointer to a linked list of array objects. 78 static Object[] mBaseCache; 80 static Object[] mTwiceBaseCache; 85 Object[] mArray; 89 int indexOf(Object key, int hash) { 172 final Object[] array = mTwiceBaseCache; 174 mTwiceBaseCache = (Object[])array[0]; 186 final Object[] array = mBaseCache [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
TransformClassAdapter.java | 96 if (t.getSort() == Type.OBJECT) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_MimeWriter.py | 19 TYPE Seller = OBJECT 123 TYPE Seller = OBJECT
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_MimeWriter.py | 19 TYPE Seller = OBJECT 123 TYPE Seller = OBJECT
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_MimeWriter.py | 19 TYPE Seller = OBJECT 123 TYPE Seller = OBJECT
|