Home
last modified time | relevance | path

Searched refs:get (Results 1 – 25 of 1533) sorted by relevance

12345678910>>...62

/frameworks/native/libs/gui/tests/
DSurfaceTextureClient_test.cpp121 int err = mANW->query(mANW.get(), NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER, in TEST_F()
129 int err = mANW->query(mANW.get(), NATIVE_WINDOW_CONCRETE_TYPE, &result); in TEST_F()
160 EGLSurface eglSurface = eglCreateWindowSurface(dpy, myConfig, mANW.get(), in TEST_F()
173 EXPECT_GT(OK, native_window_set_buffers_geometry(mANW.get(), -1, 0, 0)); in TEST_F()
174 EXPECT_GT(OK, native_window_set_buffers_geometry(mANW.get(), 0, -1, 0)); in TEST_F()
175 EXPECT_GT(OK, native_window_set_buffers_geometry(mANW.get(), 0, 0, -1)); in TEST_F()
176 EXPECT_GT(OK, native_window_set_buffers_geometry(mANW.get(), -1, -1, 0)); in TEST_F()
177 EXPECT_GT(OK, native_window_set_buffers_geometry(mANW.get(), 0, 8, 0)); in TEST_F()
178 EXPECT_GT(OK, native_window_set_buffers_geometry(mANW.get(), 8, 0, 0)); in TEST_F()
183 ASSERT_EQ(OK, native_window_dequeue_buffer_and_wait(mANW.get(), &buf)); in TEST_F()
[all …]
DSurface_test.cpp62 int err = anw->query(anw.get(), NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER, in TEST_F()
73 int err = anw->query(anw.get(), NATIVE_WINDOW_QUEUES_TO_WINDOW_COMPOSER, in TEST_F()
96 ASSERT_EQ(NO_ERROR, native_window_set_usage(anw.get(), in TEST_F()
98 ASSERT_EQ(NO_ERROR, native_window_set_buffer_count(anw.get(), 3)); in TEST_F()
101 status_t err = native_window_dequeue_buffer_and_wait(anw.get(), &buf); in TEST_F()
106 ASSERT_EQ(NO_ERROR, native_window_set_usage(anw.get(), 0)); in TEST_F()
107 ASSERT_EQ(NO_ERROR, native_window_dequeue_buffer_and_wait(anw.get(), in TEST_F()
111 ASSERT_EQ(NO_ERROR, anw->cancelBuffer(anw.get(), buf, -1)); in TEST_F()
115 ASSERT_EQ(NO_ERROR, native_window_dequeue_buffer_and_wait(anw.get(), in TEST_F()
117 ASSERT_EQ(NO_ERROR, anw->queueBuffer(anw.get(), buf, -1)); in TEST_F()
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DIntRangeManagerTest.java106 checkConfigInfo(testManager.mConfigList.get(0), 123, 123, SMS_CB_CODE_SCHEME_MIN, in testAddSingleChannel()
112 checkConfigInfo(testManager.mConfigList.get(0), 123, 123, SMS_CB_CODE_SCHEME_MIN, in testAddSingleChannel()
125 checkConfigInfo(testManager.mConfigList.get(0), 123, 123, SMS_CB_CODE_SCHEME_MIN, in testRemoveSingleChannel()
147 checkConfigInfo(testManager.mConfigList.get(0), 100, 120, SMS_CB_CODE_SCHEME_MIN, in testAddTwoChannels()
153 checkConfigInfo(testManager.mConfigList.get(0), 200, 250, SMS_CB_CODE_SCHEME_MIN, in testAddTwoChannels()
159 checkConfigInfo(testManager.mConfigList.get(0), 100, 120, SMS_CB_CODE_SCHEME_MIN, in testAddTwoChannels()
161 checkConfigInfo(testManager.mConfigList.get(1), 200, 250, SMS_CB_CODE_SCHEME_MIN, in testAddTwoChannels()
171 checkConfigInfo(testManager.mConfigList.get(0), 100, 200, SMS_CB_CODE_SCHEME_MIN, in testOverlappingChannels()
177 checkConfigInfo(testManager.mConfigList.get(0), 201, 250, SMS_CB_CODE_SCHEME_MIN, in testOverlappingChannels()
183 checkConfigInfo(testManager.mConfigList.get(0), 100, 250, SMS_CB_CODE_SCHEME_MIN, in testOverlappingChannels()
[all …]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
DNetworkState.java81 if (mStateDepository.get(i) != mTransitionTarget) { in validateStateTransition()
87 } else if (mStateDepository.get(0) != mTransitionTarget) { in validateStateTransition()
89 mStateDepository.get(0)); in validateStateTransition()
90 mReason = mTransitionTarget + " is expected, but it is " + mStateDepository.get(0); in validateStateTransition()
110 if (mStateDepository.get(0) != State.CONNECTED) { in transitToDisconnection()
112 mStateDepository.get(0) + "."; in transitToDisconnection()
115 State lastState = mStateDepository.get(mStateDepository.size() - 1); in transitToDisconnection()
121 State preState = mStateDepository.get(i-1); in transitToDisconnection()
122 State curState = mStateDepository.get(i); in transitToDisconnection()
142 if (mStateDepository.get(0) != State.DISCONNECTED) { in transitToConnection()
[all …]
DConnectivityManagerStressTestRunner.java63 String valueStr = (String) icicle.get("softap_iterations"); in onCreate()
71 String scanIterationStr = (String) icicle.get("scan_iterations"); in onCreate()
79 String ssidStr= (String) icicle.get("reconnect_ssid"); in onCreate()
84 String passwordStr = (String) icicle.get("reconnect_password"); in onCreate()
89 String reconnectStr = (String) icicle.get("reconnect_iterations"); in onCreate()
97 String sleepTimeStr = (String) icicle.get("sleep_time"); in onCreate()
105 String wifiOnlyFlag = (String) icicle.get("wifi-only"); in onCreate()
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
DWebViewEventSender.java184 pointerIds[i] = mTouchPoints.get(i).getId(); in touchStart()
186 pointerCoords[i].x = mTouchPoints.get(i).getX(); in touchStart()
187 pointerCoords[i].y = mTouchPoints.get(i).getY(); in touchStart()
188 mTouchPoints.get(i).setDownTime(downTime); in touchStart()
208 TouchPoint tp = mTouchPoints.get(i); in touchMove()
210 pointerIds[numMovedPoints] = mTouchPoints.get(i).getId(); in touchMove()
212 pointerCoords[numMovedPoints].x = mTouchPoints.get(i).getX(); in touchMove()
213 pointerCoords[numMovedPoints].y = mTouchPoints.get(i).getY(); in touchMove()
223 MotionEvent event = MotionEvent.obtain(mTouchPoints.get(0).downTime(), in touchMove()
240 pointerIds[i] = mTouchPoints.get(i).getId(); in touchEnd()
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
DMediaRecorderStressTestRunner.java36 public static CamcorderProfile profile = CamcorderProfile.get(mCameraId, mProfileQuality);
64 String iterations = (String) icicle.get("iterations"); in onCreate()
65 String videoEncoder = (String) icicle.get("video_encoder"); in onCreate()
66 String audioEncoder = (String) icicle.get("audio_encoder"); in onCreate()
67 String frameRate = (String) icicle.get("frame_rate"); in onCreate()
68 String videoWidth = (String) icicle.get("video_width"); in onCreate()
69 String videoHeight = (String) icicle.get("video_height"); in onCreate()
70 String bitRate = (String) icicle.get("bit_rate"); in onCreate()
71 String recordDuration = (String) icicle.get("record_duration"); in onCreate()
72 String removeVideos = (String) icicle.get("remove_videos"); in onCreate()
/frameworks/native/opengl/libagl/
Dstate.cpp78 c->surfaceManager = smgr.get(); in ogles_init()
82 c->bufferObjectManager = bomgr.get(); in ogles_init()
227 ogles_context_t* c = ogles_context_t::get(); in glStencilFunc()
238 ogles_context_t* c = ogles_context_t::get(); in glStencilOp()
256 ogles_context_t* c = ogles_context_t::get(); in glCullFace()
270 ogles_context_t* c = ogles_context_t::get(); in glFrontFace()
284 ogles_context_t* c = ogles_context_t::get(); in glHint()
303 ogles_context_t* c = ogles_context_t::get(); in glEnable()
307 ogles_context_t* c = ogles_context_t::get(); in glDisable()
327 ogles_context_t* c = ogles_context_t::get(); in glGetError()
[all …]
/frameworks/native/libs/utils/tests/
DBlobCache_test.cpp49 ASSERT_EQ(size_t(4), mBC->get("abcd", 4, buf, 4)); in TEST_F()
60 ASSERT_EQ(size_t(2), mBC->get("ab", 2, buf, 2)); in TEST_F()
63 ASSERT_EQ(size_t(2), mBC->get("ef", 2, buf, 2)); in TEST_F()
71 ASSERT_EQ(size_t(4), mBC->get("abcd", 4, buf+1, 4)); in TEST_F()
83 ASSERT_EQ(size_t(4), mBC->get("abcd", 4, buf, 3)); in TEST_F()
91 ASSERT_EQ(size_t(4), mBC->get("abcd", 4, NULL, 0)); in TEST_F()
98 ASSERT_EQ(size_t(4), mBC->get("abcd", 4, buf, 4)); in TEST_F()
109 ASSERT_EQ(size_t(4), mBC->get("abcd", 4, buf, 4)); in TEST_F()
123 ASSERT_EQ(size_t(0), mBC->get(key, MAX_KEY_SIZE+1, buf, 4)); in TEST_F()
139 ASSERT_EQ(size_t(0), mBC->get("abcd", 4, buf, MAX_VALUE_SIZE+1)); in TEST_F()
[all …]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
DPduPart.java211 return (byte[]) mPartHeader.get(P_CONTENT_ID); in getContentId()
229 Integer charset = (Integer) mPartHeader.get(P_CHARSET); in getCharset()
260 return (byte[]) mPartHeader.get(P_CONTENT_LOCATION); in getContentLocation()
286 return (byte[]) mPartHeader.get(P_CONTENT_DISPOSITION); in getContentDisposition()
309 return (byte[]) mPartHeader.get(P_CONTENT_TYPE); in getContentType()
332 return (byte[]) mPartHeader.get(P_CONTENT_TRANSFER_ENCODING); in getContentTransferEncoding()
355 return (byte[]) mPartHeader.get(P_NAME); in getName()
378 return (byte[]) mPartHeader.get(P_FILENAME); in getFilename()
385 byte[] location = (byte[]) mPartHeader.get(P_NAME); in generateLocation()
387 location = (byte[]) mPartHeader.get(P_FILENAME); in generateLocation()
[all …]
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
DNetworkState.java123 } else if (mStateDepository.get(0) != mTransitionTarget) { in validateNetworkStates()
126 mStateDepository.get(0).toString())); in validateNetworkStates()
129 mStateDepository.get(0).toString()); in validateNetworkStates()
143 if (mStateDepository.get(0) != State.CONNECTED) { in validateNetworkDisconnection()
145 mStateDepository.get(0))); in validateNetworkDisconnection()
149 State lastState = mStateDepository.get(mStateDepository.size() - 1); in validateNetworkDisconnection()
157 State preState = mStateDepository.get(i-1); in validateNetworkDisconnection()
158 State curState = mStateDepository.get(i); in validateNetworkDisconnection()
184 if (mStateDepository.get(0) != State.DISCONNECTED) { in validateNetworkConnection()
186 mStateDepository.get(0))); in validateNetworkConnection()
[all …]
/frameworks/compile/slang/
Dslang_rs_backend.cpp197 OptimizationOption.push_back(llvm::ConstantInt::get( in HandleTranslationUnitPost()
221 llvm::MDString::get(mLLVMContext, EV->getName().c_str())); in HandleTranslationUnitPost()
229 llvm::MDString::get( in HandleTranslationUnitPost()
238 llvm::MDString::get( in HandleTranslationUnitPost()
245 llvm::MDString::get( in HandleTranslationUnitPost()
255 llvm::MDString::get(mLLVMContext, in HandleTranslationUnitPost()
262 llvm::MDNode::get(mLLVMContext, ExportVarInfo)); in HandleTranslationUnitPost()
271 mRSObjectSlotsMetadata->addOperand(llvm::MDNode::get(mLLVMContext, in HandleTranslationUnitPost()
272 llvm::MDString::get(mLLVMContext, llvm::utostr_32(slotCount)))); in HandleTranslationUnitPost()
296 ExportFuncInfo.push_back(llvm::MDString::get(mLLVMContext, in HandleTranslationUnitPost()
[all …]
/frameworks/base/core/java/android/hardware/
DCamera.java842 Camera c = (Camera)((WeakReference)camera_ref).get(); in postEventFromNative()
2007 Log.e(TAG, "dump: " + k + "=" + mMap.get(k)); in dump()
2024 flattened.append(mMap.get(k)); in flatten()
2095 Area area = areas.get(i); in set()
2120 public String get(String key) { in get() method in Camera.Parameters
2121 return mMap.get(key); in get()
2131 return Integer.parseInt(mMap.get(key)); in getInt()
2169 String pair = get(KEY_PREVIEW_SIZE); in getPreviewSize()
2180 String str = get(KEY_PREVIEW_SIZE + SUPPORTED_VALUES_SUFFIX); in getSupportedPreviewSizes()
2200 String str = get(KEY_VIDEO_SIZE + SUPPORTED_VALUES_SUFFIX); in getSupportedVideoSizes()
[all …]
/frameworks/base/policy/tests/src/com/android/internal/policy/impl/keyguard_obsolete/
DLockPatternKeyguardViewTest.java222 MockKeyguardScreen lockScreen = mLPKV.getInjectedLockScreens().get(0); in testStateAfterCreatedWhileScreenOff()
223 MockKeyguardScreen unlockScreen = mLPKV.getInjectedUnlockScreens().get(0); in testStateAfterCreatedWhileScreenOff()
246 MockKeyguardScreen lockScreen = mLPKV.getInjectedLockScreens().get(0); in testWokenByNonMenuKey()
247 MockKeyguardScreen unlockScreen = mLPKV.getInjectedUnlockScreens().get(0); in testWokenByNonMenuKey()
285 MockKeyguardScreen lockScreen = mLPKV.getInjectedLockScreens().get(0); in testWokenByMenuKeyWhenPatternSet()
286 MockKeyguardScreen unlockScreen = mLPKV.getInjectedUnlockScreens().get(0); in testWokenByMenuKeyWhenPatternSet()
299 MockKeyguardScreen lockScreen = mLPKV.getInjectedLockScreens().get(0); in testScreenRequestsRecreation()
312 assertEquals(1, mLPKV.getInjectedLockScreens().get(0).getCleanupCount()); in testScreenRequestsRecreation()
313 assertEquals(1, mLPKV.getInjectedUnlockScreens().get(0).getCleanupCount()); in testScreenRequestsRecreation()
316 assertEquals(1, mLPKV.getInjectedLockScreens().get(0).getOnPauseCount()); in testScreenRequestsRecreation()
[all …]
/frameworks/base/core/java/android/animation/
DFloatKeyframeSet.java54 newKeyframes[i] = (FloatKeyframe) keyframes.get(i).clone(); in clone()
64 firstValue = ((FloatKeyframe) mKeyframes.get(0)).getFloatValue(); in getFloatValue()
65 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue(); in getFloatValue()
78 final FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(0); in getFloatValue()
79 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(1); in getFloatValue()
94 final FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 2); in getFloatValue()
95 final FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(mNumKeyframes - 1); in getFloatValue()
110 FloatKeyframe prevKeyframe = (FloatKeyframe) mKeyframes.get(0); in getFloatValue()
112 FloatKeyframe nextKeyframe = (FloatKeyframe) mKeyframes.get(i); in getFloatValue()
130 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).floatValue(); in getFloatValue()
DIntKeyframeSet.java54 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone(); in clone()
64 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue(); in getIntValue()
65 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue(); in getIntValue()
78 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()
79 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(1); in getIntValue()
94 final IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 2); in getIntValue()
95 final IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(mNumKeyframes - 1); in getIntValue()
109 IntKeyframe prevKeyframe = (IntKeyframe) mKeyframes.get(0); in getIntValue()
111 IntKeyframe nextKeyframe = (IntKeyframe) mKeyframes.get(i); in getIntValue()
129 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).intValue(); in getIntValue()
/frameworks/av/drm/libdrmframework/
DDrmManagerClientImpl.cpp49 if (NULL == sDrmManagerService.get()) { in getDrmManagerService()
63 if (NULL == sDeathNotifier.get()) { in getDrmManagerService()
86 (NULL != infoListener.get()) ? this : NULL); in setOnInfoListener()
182 if (NULL != decryptHandle.get()) { in consumeRights()
184 uniqueId, decryptHandle.get(), action, reserve); in consumeRights()
193 if (NULL != decryptHandle.get()) { in setPlaybackStatus()
195 uniqueId, decryptHandle.get(), playbackStatus, position); in setPlaybackStatus()
283 if (NULL != decryptHandle.get()) { in closeDecryptSession()
285 uniqueId, decryptHandle.get()); in closeDecryptSession()
294 if ((NULL != decryptHandle.get()) && (NULL != headerInfo)) { in initializeDecryptUnit()
[all …]
/frameworks/base/graphics/java/android/renderscript/
DScriptGroup.java182 final ConnectLine cl = target.mOutputs.get(ct); in validateCycle()
202 if (mNodes.get(ct).dagNumber == valueKilled) in mergeDAGs()
203 mNodes.get(ct).dagNumber = valueUsed; in mergeDAGs()
216 final ConnectLine cl = n.mOutputs.get(ct); in validateDAGRecurse()
230 Node n = mNodes.get(ct); in validateDAG()
238 int dagNumber = mNodes.get(0).dagNumber; in validateDAG()
240 if (mNodes.get(ct).dagNumber != dagNumber) { in validateDAG()
248 if (s == mNodes.get(ct).mScript) { in findNode()
249 return mNodes.get(ct); in findNode()
257 Node n = mNodes.get(ct); in findNode()
[all …]
/frameworks/base/core/jni/
Dandroid_view_InputDevice.cpp39 if (!nameObj.get()) { in android_view_InputDevice_create()
45 if (!descriptorObj.get()) { in android_view_InputDevice_create()
52 if (!kcmObj.get()) { in android_view_InputDevice_create()
58 nameObj.get(), descriptorObj.get(), deviceInfo.isExternal(), in android_view_InputDevice_create()
60 kcmObj.get(), deviceInfo.hasVibrator())); in android_view_InputDevice_create()
65 env->CallVoidMethod(inputDeviceObj.get(), gInputDeviceClassInfo.addMotionRange, in android_view_InputDevice_create()
72 return env->NewLocalRef(inputDeviceObj.get()); in android_view_InputDevice_create()
/frameworks/base/core/java/android/database/
DMatrixCursor.java64 private Object get(int column) { in get() method in MatrixCursor
165 localData[start + i] = columnValues.get(i); in addRow()
229 Object value = get(column); in getString()
236 Object value = get(column); in getShort()
244 Object value = get(column); in getInt()
252 Object value = get(column); in getLong()
260 Object value = get(column); in getFloat()
268 Object value = get(column); in getDouble()
276 Object value = get(column); in getBlob()
282 return DatabaseUtils.getTypeOfObject(get(column)); in getType()
[all …]
/frameworks/base/core/java/android/widget/
DDatePicker.java201 setDate(mTempDate.get(Calendar.YEAR), mTempDate.get(Calendar.MONTH), in DatePicker()
202 mTempDate.get(Calendar.DAY_OF_MONTH)); in DatePicker()
276 init(mCurrentDate.get(Calendar.YEAR), mCurrentDate.get(Calendar.MONTH), mCurrentDate in DatePicker()
277 .get(Calendar.DAY_OF_MONTH), null); in DatePicker()
314 if (mTempDate.get(Calendar.YEAR) == mMinDate.get(Calendar.YEAR) in setMinDate()
315 && mTempDate.get(Calendar.DAY_OF_YEAR) != mMinDate.get(Calendar.DAY_OF_YEAR)) { in setMinDate()
350 if (mTempDate.get(Calendar.YEAR) == mMaxDate.get(Calendar.YEAR) in setMaxDate()
351 && mTempDate.get(Calendar.DAY_OF_YEAR) != mMaxDate.get(Calendar.DAY_OF_YEAR)) { in setMaxDate()
606 return (mCurrentDate.get(Calendar.YEAR) != year in isNewDate()
607 || mCurrentDate.get(Calendar.MONTH) != dayOfMonth in isNewDate()
[all …]
/frameworks/base/core/java/android/os/
DBundle.java281 public Object get(String key) { in get() method in Bundle
283 return mMap.get(key); in get()
356 if ((array.get(n).describeContents() in hasFileDescriptors()
367 && (array.get(0) instanceof Parcelable)) { in hasFileDescriptors()
369 Parcelable p = (Parcelable) array.get(n); in hasFileDescriptors()
804 Object o = mMap.get(key); in getBoolean()
838 Object o = mMap.get(key); in getByte()
872 Object o = mMap.get(key); in getChar()
906 Object o = mMap.get(key); in getShort()
940 Object o = mMap.get(key); in getInt()
[all …]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
DKeyguardUpdateMonitor.java413 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleDevicePolicyManagerStateChanged()
425 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleUserSwitched()
443 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleBootCompleted()
463 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleUserRemoved()
475 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleDeviceProvisioned()
500 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handlePhoneStateChanged()
514 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleRingerModeChange()
527 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleTimeUpdate()
543 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleBatteryUpdate()
559 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); in handleCarrierInfoUpdate()
[all …]
/frameworks/base/core/java/com/android/internal/view/
DIInputConnectionWrapper.java196 InputConnection ic = mInputConnection.get(); in executeMessage()
212 InputConnection ic = mInputConnection.get(); in executeMessage()
228 InputConnection ic = mInputConnection.get(); in executeMessage()
244 InputConnection ic = mInputConnection.get(); in executeMessage()
260 InputConnection ic = mInputConnection.get(); in executeMessage()
274 InputConnection ic = mInputConnection.get(); in executeMessage()
283 InputConnection ic = mInputConnection.get(); in executeMessage()
292 InputConnection ic = mInputConnection.get(); in executeMessage()
301 InputConnection ic = mInputConnection.get(); in executeMessage()
310 InputConnection ic = mInputConnection.get(); in executeMessage()
[all …]
/frameworks/base/core/java/android/net/dhcp/
DDhcpPacket.java389 shortBuf.get(shortArray); in checksum()
399 short b = buf.get(start); in checksum()
524 packet.get(ipAddr); in readIpAddress()
542 buf.get(bytes); in readAsciiString()
590 packet.get(l2dst); in decodeFullPacket()
591 packet.get(l2src); in decodeFullPacket()
601 byte ipType = packet.get(); in decodeFullPacket()
603 byte ipDiffServicesField = packet.get(); in decodeFullPacket()
606 byte ipFlags = packet.get(); in decodeFullPacket()
607 byte ipFragOffset = packet.get(); in decodeFullPacket()
[all …]

12345678910>>...62