Searched defs:identifier (Results 1 - 15 of 15) sorted by relevance

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetObjectLabelKHR.java1 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
3 public static native String glGetObjectLabelKHR(int identifier, int name); argument
H A DglGetObjectLabelKHR.cpp1 /* void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
3 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) { argument
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationUtils.java28 * An utility function that returns the menu identifier for a particular
32 * @param identifier Menu identifier.
35 public static int getMenuIdentifier(Class cls, String identifier) { argument
38 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls);
/frameworks/native/libs/input/
H A DInputDevice.cpp145 const InputDeviceIdentifier& identifier, const String8& alias, bool isExternal) {
149 mIdentifier = identifier;
144 initialize(int32_t id, int32_t generation, int32_t controllerNumber, const InputDeviceIdentifier& identifier, const String8& alias, bool isExternal) argument
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java110 * The <code>android:name</code> attribute specifies an identifier by which
382 * @param identifier Identifier for the input device
387 public String getCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier) { argument
389 return mIm.getCurrentKeyboardLayoutForInputDevice(identifier);
404 * @param identifier The identifier for the input device.
409 public void setCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, argument
411 if (identifier == null) {
412 throw new IllegalArgumentException("identifier must not be null");
419 mIm.setCurrentKeyboardLayoutForInputDevice(identifier,
434 getKeyboardLayoutsForInputDevice(InputDeviceIdentifier identifier) argument
459 addKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
487 removeKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
[all...]
/frameworks/native/services/inputflinger/
H A DEventHub.h330 const InputDeviceIdentifier identifier; member in struct:android::EventHub::Device
358 Device(int fd, int32_t id, const String8& path, const InputDeviceIdentifier& identifier);
376 void assignDescriptorLocked(InputDeviceIdentifier& identifier);
H A DEventHub.cpp141 const InputDeviceIdentifier& identifier) :
143 fd(fd), id(id), path(path), identifier(identifier),
247 return device->identifier;
286 axis, device->identifier.name.string(), device->fd, errno);
395 axis, device->identifier.name.string(), device->fd, errno);
564 static String8 generateDescriptor(InputDeviceIdentifier& identifier) { argument
566 rawDescriptor.appendFormat(":%04x:%04x:", identifier.vendor,
567 identifier.product);
569 if (!identifier
140 Device(int fd, int32_t id, const String8& path, const InputDeviceIdentifier& identifier) argument
593 assignDescriptorLocked(InputDeviceIdentifier& identifier) argument
1062 InputDeviceIdentifier identifier; local
1357 InputDeviceIdentifier identifier; local
[all...]
H A DInputReader.cpp366 InputDeviceIdentifier identifier = mEventHub->getDeviceIdentifier(deviceId); local
370 InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes);
376 identifier.name.string());
379 identifier.name.string(), device->getSources());
411 const InputDeviceIdentifier& identifier, uint32_t classes) {
413 controllerNumber, identifier, classes);
858 int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) :
860 mIdentifier(identifier), mClasses(classes),
410 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
857 InputDevice(InputReaderContext* context, int32_t id, int32_t generation, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31Ext.cpp522 /* void glObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label ) */
525 (JNIEnv *_env, jobject _this, jint identifier, jint name, jint length, jstring label) {
540 (GLenum)identifier,
556 /* void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label ) */
558 android_glGetObjectLabelKHR(JNIEnv *_env, jobject _this, jint identifier, jint name) { argument
524 android_glObjectLabelKHR__IIILjava_lang_String_2(JNIEnv *_env, jobject _this, jint identifier, jint name, jint length, jstring label) argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp200 virtual sp<KeyCharacterMap> getKeyboardLayoutOverlay(const InputDeviceIdentifier& identifier);
201 virtual String8 getDeviceAlias(const InputDeviceIdentifier& identifier);
510 const InputDeviceIdentifier& identifier) {
514 ScopedLocalRef<jstring> descriptor(env, env->NewStringUTF(identifier.descriptor.string()));
517 identifier.vendor, identifier.product));
535 String8 NativeInputManager::getDeviceAlias(const InputDeviceIdentifier& identifier) { argument
538 ScopedLocalRef<jstring> uniqueIdObj(env, env->NewStringUTF(identifier.uniqueId.string()));
509 getKeyboardLayoutOverlay( const InputDeviceIdentifier& identifier) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java368 // C function void glObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei length, const GLchar *label )
371 int identifier,
377 // C function void glGetObjectLabelKHR ( GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label )
379 public static native String glGetObjectLabelKHR(int identifier, int name); argument
370 glObjectLabelKHR( int identifier, int name, int length, String label ) argument
/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java995 private String getLayoutDescriptor(InputDeviceIdentifier identifier) { argument
996 if (identifier == null || identifier.getDescriptor() == null) {
997 throw new IllegalArgumentException("identifier and descriptor must not be null");
1000 if (identifier.getVendorId() == 0 && identifier.getProductId() == 0) {
1001 return identifier.getDescriptor();
1004 bob.append("vendor:").append(identifier.getVendorId());
1005 bob.append(",product:").append(identifier.getProductId());
1010 public String getCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier) { argument
1030 setCurrentKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
1056 getKeyboardLayoutsForInputDevice(InputDeviceIdentifier identifier) argument
1069 addKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
1098 removeKeyboardLayoutForInputDevice(InputDeviceIdentifier identifier, String keyboardLayoutDescriptor) argument
1564 getKeyboardLayoutOverlay(InputDeviceIdentifier identifier) argument
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp199 virtual sp<KeyCharacterMap> getKeyboardLayoutOverlay(const InputDeviceIdentifier& identifier) { argument
203 virtual String8 getDeviceAlias(const InputDeviceIdentifier& identifier) { argument
315 InputDeviceIdentifier identifier; member in struct:android::FakeEventHub::Device
350 device->identifier.name = name;
482 return device ? device->identifier : InputDeviceIdentifier();
947 InputDeviceIdentifier identifier; local
948 identifier.name = name;
950 return new InputDevice(&mContext, deviceId, generation, controllerNumber, identifier,
956 const InputDeviceIdentifier& identifier, uint32_t classes) {
962 return InputReader::createDeviceLocked(deviceId, controllerNumber, identifier, classe
955 createDeviceLocked(int32_t deviceId, int32_t controllerNumber, const InputDeviceIdentifier& identifier, uint32_t classes) argument
1213 InputDeviceIdentifier identifier; local
1400 InputDeviceIdentifier identifier; local
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp3563 ALOGW("No package identifier when getting name for resource number 0x%08x", resID);
3570 ALOGW("No type identifier when getting name for resource number 0x%08x", resID);
3576 ALOGW("Bad identifier when getting name for resource number 0x%08x", resID);
3626 ALOGW("No package identifier when getting value for resource number 0x%08x", resID);
3633 ALOGW("No type identifier when getting value for resource number 0x%08x", resID);
3639 ALOGW("Bad identifier when getting value for resource number 0x%08x", resID);
3790 ALOGW("Invalid package identifier when getting bag for resource number 0x%08x", resID);
3794 ALOGW("No type identifier when getting bag for resource number 0x%08x", resID);
3801 ALOGW("Bad identifier when getting bag for resource number 0x%08x", resID);
3807 ALOGW("Type identifier
4203 const uint32_t identifier = findEntry(group, ti, name, nameLen, local
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp13783 void GLTrace_glObjectLabelKHR(GLenum identifier, GLuint name, GLsizei length, const GLchar * label) { argument
13789 // copy argument identifier
13793 arg_identifier->add_intvalue((int)identifier);
13816 glContext->hooks->gl.glObjectLabelKHR(identifier, name, length, label);
13830 void GLTrace_glGetObjectLabelKHR(GLenum identifier, GLuint name, GLsizei bufSize, GLsizei * length, GLchar * label) { argument
13836 // copy argument identifier
13840 arg_identifier->add_intvalue((int)identifier);
13869 glContext->hooks->gl.glGetObjectLabelKHR(identifier, name, bufSize, length, label);
[all...]

Completed in 1369 milliseconds