HomeSort by relevance Sort by last modified time
    Searched refs:GetIntField (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 48 out->mcc = env->GetIntField(clazz, gConfigurationClassInfo.mcc);
49 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc);
50 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout);
51 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen);
52 out->keyboard = env->GetIntField(clazz, gConfigurationClassInfo.keyboard);
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
55 out->inputFlags = env->GetIntField(clazz, gConfigurationClassInfo.keyboardHidden);
56 int hardKeyboardHidden = env->GetIntField(clazz, gConfigurationClassInfo.hardKeyboardHidden);
61 out->inputFlags |= env->GetIntField(clazz, gConfigurationClassInfo.navigationHidden)
64 out->orientation = env->GetIntField(clazz, gConfigurationClassInfo.orientation)
    [all...]
android_view_KeyEvent.cpp 78 jint deviceId = env->GetIntField(eventObj, gKeyEventClassInfo.mDeviceId);
79 jint source = env->GetIntField(eventObj, gKeyEventClassInfo.mSource);
80 jint metaState = env->GetIntField(eventObj, gKeyEventClassInfo.mMetaState);
81 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
82 jint keyCode = env->GetIntField(eventObj, gKeyEventClassInfo.mKeyCode);
83 jint scanCode = env->GetIntField(eventObj, gKeyEventClassInfo.mScanCode);
84 jint repeatCount = env->GetIntField(eventObj, gKeyEventClassInfo.mRepeatCount);
85 jint flags = env->GetIntField(eventObj, gKeyEventClassInfo.mFlags);
android_hardware_SerialPort.cpp 163 int fd = env->GetIntField(thiz, field_context);
171 int fd = env->GetIntField(thiz, field_context);
193 int fd = env->GetIntField(thiz, field_context);
210 int fd = env->GetIntField(thiz, field_context);
227 int fd = env->GetIntField(thiz, field_context);
242 int fd = env->GetIntField(thiz, field_context);
android_opengl_GLES10Ext.cpp 106 position = _env->GetIntField(buffer, positionID);
107 limit = _env->GetIntField(buffer, limitID);
108 elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
136 jint position = _env->GetIntField(buffer, positionID);
137 jint elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
android_hardware_SoundTrigger.cpp 450 (sound_trigger_module_handle_t)env->GetIntField(thiz, gModuleFields.mId);
598 env->GetIntField(jPhrase,gKeyphraseFields.id);
600 env->GetIntField(jPhrase,gKeyphraseFields.recognitionModes);
711 config->capture_requested = env->GetIntField(jConfig,
723 config->phrases[i].id = env->GetIntField(jPhrase,
725 config->phrases[i].recognition_modes = env->GetIntField(jPhrase,
727 config->phrases[i].confidence_level = env->GetIntField(jPhrase,
738 config->phrases[i].levels[j].user_id = env->GetIntField(jConfidenceLevel,
740 config->phrases[i].levels[j].level = env->GetIntField(jConfidenceLevel,
    [all...]
android_view_Surface.cpp 203 dirtyRect.left = env->GetIntField(dirtyRectObj, gRectClassInfo.left);
204 dirtyRect.top = env->GetIntField(dirtyRectObj, gRectClassInfo.top);
205 dirtyRect.right = env->GetIntField(dirtyRectObj, gRectClassInfo.right);
206 dirtyRect.bottom = env->GetIntField(dirtyRectObj, gRectClassInfo.bottom);
android_view_SurfaceControl.cpp 127 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left);
128 int top = env->GetIntField(sourceCropObj, gRectClassInfo.top);
129 int right = env->GetIntField(sourceCropObj, gRectClassInfo.right);
130 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom);
198 int left = env->GetIntField(sourceCropObj, gRectClassInfo.left);
199 int top = env->GetIntField(sourceCropObj, gRectClassInfo.top);
200 int right = env->GetIntField(sourceCropObj, gRectClassInfo.right);
201 int bottom = env->GetIntField(sourceCropObj, gRectClassInfo.bottom);
android_media_AudioSystem.cpp 456 nAudioGainConfig->index = env->GetIntField(jAudioGainConfig, gAudioGainConfigFields.mIndex);
457 nAudioGainConfig->mode = env->GetIntField(jAudioGainConfig, gAudioGainConfigFields.mMode);
459 jint jMask = env->GetIntField(jAudioGainConfig, gAudioGainConfigFields.mChannelMask);
469 nAudioGainConfig->ramp_duration_ms = env->GetIntField(jAudioGainConfig,
486 nAudioPortConfig->id = env->GetIntField(jHandle, gAudioHandleFields.mId);
487 nAudioPortConfig->role = (audio_port_role_t)env->GetIntField(jAudioPort,
501 nAudioPortConfig->sample_rate = env->GetIntField(jAudioPortConfig,
506 jint jMask = env->GetIntField(jAudioPortConfig,
517 jint jFormat = env->GetIntField(jAudioPortConfig, gAudioPortConfigFields.mFormat);
529 nAudioPortConfig->config_mask = env->GetIntField(jAudioPortConfig
    [all...]
android_view_PointerIcon.cpp 72 outPointerIcon->style = env->GetIntField(loadedPointerIconObj,
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 114 mInfo->layoutParamsFlags = env->GetIntField(obj,
116 mInfo->layoutParamsPrivateFlags = env->GetIntField(obj,
118 mInfo->layoutParamsType = env->GetIntField(obj,
122 mInfo->frameLeft = env->GetIntField(obj,
124 mInfo->frameTop = env->GetIntField(obj,
126 mInfo->frameRight = env->GetIntField(obj,
128 mInfo->frameBottom = env->GetIntField(obj,
154 mInfo->layer = env->GetIntField(obj,
156 mInfo->ownerPid = env->GetIntField(obj,
158 mInfo->ownerUid = env->GetIntField(obj
    [all...]
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 192 *L = env->GetIntField(obj, gRect_leftFieldID);
193 *T = env->GetIntField(obj, gRect_topFieldID);
194 *R = env->GetIntField(obj, gRect_rightFieldID);
195 *B = env->GetIntField(obj, gRect_bottomFieldID);
212 ir->set(env->GetIntField(obj, gRect_leftFieldID),
213 env->GetIntField(obj, gRect_topFieldID),
214 env->GetIntField(obj, gRect_rightFieldID),
215 env->GetIntField(obj, gRect_bottomFieldID));
244 r->set(SkIntToScalar(env->GetIntField(obj, gRect_leftFieldID)),
245 SkIntToScalar(env->GetIntField(obj, gRect_topFieldID))
    [all...]
BitmapFactory.cpp 225 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
245 const int density = env->GetIntField(options, gOptions_densityFieldID);
246 const int targetDensity = env->GetIntField(options, gOptions_targetDensityFieldID);
247 const int screenDensity = env->GetIntField(options, gOptions_screenDensityFieldID);
  /frameworks/base/media/mca/filterfw/jni/
jni_native_buffer.cpp 30 *size = env->GetIntField(buffer, size_field);
  /libcore/luni/src/main/native/
valueOf.cpp 52 return env->GetIntField(javaLangInteger, fid);
NetworkUtilities.cpp 114 ss.ss_family = env->GetIntField(inetAddress, familyFid);
169 sin6.sin6_scope_id = env->GetIntField(inetAddress, scopeFid);
java_util_zip_Deflater.cpp 105 jint inReadValue = env->GetIntField(recv, inReadField);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
common.cpp 84 position = _env->GetIntField(buffer, positionID);
85 limit = _env->GetIntField(buffer, limitID);
86 elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
114 jint position = _env->GetIntField(buffer, positionID);
115 jint elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
GLCHeader.cpp 123 position = _env->GetIntField(buffer, positionID);
124 limit = _env->GetIntField(buffer, limitID);
125 elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
173 jint position = _env->GetIntField(buffer, positionID);
174 jint elementSizeShift = _env->GetIntField(buffer, elementSizeShiftID);
  /packages/apps/Nfc/nci/jni/
NativeLlcpConnectionlessSocket.cpp 66 jint handle = e->GetIntField(o, f);
266 jint handle = e->GetIntField(o, f);
NfcJniUtil.cpp 121 return e->GetIntField(o, f);
  /external/neven/
FaceDetector_jni.cpp 205 u32 maxFaces = _env->GetIntField(_this, gFaceDetectorOffsets.maxFaces);
206 u32 width = _env->GetIntField(_this, gFaceDetectorOffsets.width);
207 u32 height = _env->GetIntField(_this, gFaceDetectorOffsets.height);
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool_SoundPoolImpl.cpp 203 paa->usage = (audio_usage_t) env->GetIntField(jaa, javaAudioAttrFields.fieldUsage);
205 (audio_content_type_t) env->GetIntField(jaa, javaAudioAttrFields.fieldContentType);
206 paa->flags = env->GetIntField(jaa, javaAudioAttrFields.fieldFlags);
  /frameworks/opt/net/voip/src/jni/rtp/
RtpStream.cpp 91 int socket = env->GetIntField(thiz, gSocket);
  /packages/apps/Nfc/nxp/jni/
com_android_nfc.cpp 232 return e->GetIntField(o, f);
247 return e->GetIntField(o, f);
295 return e->GetIntField(o, f);
302 return e->GetIntField(o, f);
  /external/conscrypt/src/compat/native/
JNIHelp.cpp 154 return (*env)->GetIntField(e, fileDescriptor, fid);

Completed in 382 milliseconds

1 2 3 4 5 6