Home
last modified time | relevance | path

Searched refs:mInput (Results 1 – 25 of 55) sorted by relevance

123

/aosp12/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerSetupView.kt180 val seconds = mInput[1] * 10 + mInput[0]
181 val minutes = mInput[3] * 10 + mInput[2]
182 val hours = mInput[5] * 10 + mInput[4]
221 System.arraycopy(mInput, 0, mInput, 1, mInputPointer + 1)
222 mInput[0] = digit
244 System.arraycopy(mInput, 1, mInput, 0, mInputPointer)
267 mInput.fill(0)
280 val seconds = mInput[1] * 10 + mInput[0]
281 val minutes = mInput[3] * 10 + mInput[2]
282 val hours = mInput[5] * 10 + mInput[4]
[all …]
/aosp12/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java28 private String mInput; field in PatternScanner
35 mInput = input; in PatternScanner()
39 mInput = input; in PatternScanner()
51 Matcher matcher = pattern.matcher(mInput); in tryEat()
52 matcher.region(mOffset, mInput.length()); in tryEat()
85 Matcher matcher = pattern.matcher(mInput); in peek()
86 matcher.region(mOffset, mInput.length()); in peek()
93 Matcher matcher = pattern.matcher(mInput); in skip()
94 matcher.region(mOffset, mInput.length()); in skip()
102 return mOffset >= mInput.length(); in atEnd()
[all …]
/aosp12/frameworks/base/obex/javax/obex/
H A DServerSession.java54 private InputStream mInput; field in ServerSession
168 int length = mInput.read(); in handleAbortRequest()
174 mInput.read(); in handleAbortRequest()
308 length = mInput.read(); in handleSetPathRequest()
310 flags = mInput.read(); in handleSetPathRequest()
432 length = mInput.read(); in handleDisconnectRequest()
552 version = mInput.read(); in handleConnectRequest()
553 flags = mInput.read(); in handleConnectRequest()
693 if(mInput != null) in close()
694 mInput.close(); in close()
[all …]
H A DClientSession.java67 private final InputStream mInput; field in ClientSession
76 mInput = trans.openInputStream(); in ClientSession()
92 mInput = trans.openInputStream(); in ClientSession()
512 header.responseCode = mInput.read(); in sendRequest()
514 int length = ((mInput.read() << 8) | (mInput.read())); in sendRequest()
523 int version = mInput.read(); in sendRequest()
525 int flags = mInput.read(); in sendRequest()
526 mMaxTxPacketSize = (mInput.read() << 8) + mInput.read(); in sendRequest()
547 bytesReceived = mInput.read(data); in sendRequest()
557 bytesReceived = mInput.read(data); in sendRequest()
[all …]
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
H A DAllAppsSearchBarController.java50 protected ExtendedEditText mInput; field in AllAppsSearchBarController
57 mInput.setVisibility(visibility); in setVisibility()
69 mInput = input; in initialize()
70 mInput.addTextChangedListener(this); in initialize()
71 mInput.setOnEditorActionListener(this); in initialize()
72 mInput.setOnBackKeyListener(this); in initialize()
73 mInput.setOnFocusChangeListener(this); in initialize()
147 mInput.hideKeyboard(); in onFocusChange()
156 mInput.reset(); in reset()
164 mInput.showKeyboard(); in focusSearchField()
[all …]
/aosp12/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfiguration.java65 mInput = input; in StreamConfiguration()
117 return mInput; in isInput()
131 return !mInput; in isOutput()
154 mInput == other.mInput; in equals()
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0); in hashCode()
170 protected boolean mInput; field in StreamConfiguration
H A DRecommendedStreamConfiguration.java88 mInput == other.mInput; in equals()
98 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0, mUsecaseBitmap); in hashCode()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/widget/picker/search/
H A DWidgetsSearchBarController.java46 protected ExtendedEditText mInput; field in WidgetsSearchBarController
55 mInput = editText; in WidgetsSearchBarController()
56 mInput.addTextChangedListener(this); in WidgetsSearchBarController()
57 mInput.setOnBackKeyListener(this); in WidgetsSearchBarController()
58 mInput.setOnKeyListener(this); in WidgetsSearchBarController()
105 mInput.setText(""); in clearSearchResult()
134 mInput.clearFocus(); in clearFocus()
135 mInput.hideKeyboard(); in clearFocus()
/aosp12/frameworks/base/services/robotests/src/com/android/server/testing/shadows/
H A DShadowBackupDataInput.java49 private ObjectInputStream mInput; field in ShadowBackupDataInput
68 mSize = mInput.readInt(); in readNextHeader()
72 mKey = mInput.readUTF(); in readNextHeader()
92 int result = mInput.read(data, offset, size); in readEntityData()
102 mInput.read(new byte[mSize], 0, mSize); in skipEntityData()
118 if (mInput == null) { in ensureInput()
120 mInput = new ObjectInputStream(new FileInputStream(mFileDescriptor)); in ensureInput()
/aosp12/frameworks/native/libs/gui/
H A DStreamSplitter.cpp51 status_t status = splitter->mInput->consumerConnect(splitter, false); in createSplitter()
53 splitter->mInput->setConsumerName(String8("StreamSplitter")); in createSplitter()
61 mOutstandingBuffers(0), mInput(inputQueue), mOutputs(), mBuffers() {} in StreamSplitter()
64 mInput->consumerDisconnect(); in ~StreamSplitter()
101 mInput->setConsumerName(name); in setName()
130 status_t status = mInput->acquireBuffer(&bufferItem, /* presentWhen */ 0); in onFrameAvailable()
137 status = mInput->detachBuffer(bufferItem.mSlot); in onFrameAvailable()
233 status = mInput->attachBuffer(&consumerSlot, tracker->getBuffer()); in onBufferReleasedByOutput()
237 status = mInput->releaseBuffer(consumerSlot, /* frameNumber */ 0, in onBufferReleasedByOutput()
256 mInput->consumerDisconnect(); in onAbandonedLocked()
/aosp12/frameworks/base/core/java/android/app/search/
H A DQuery.java51 private final String mInput; field in Query
71 mInput = input; in Query()
87 mInput = parcel.readString(); in Query()
97 return mInput; in getInput()
139 dest.writeString(mInput); in writeToParcel()
/aosp12/hardware/libhardware_legacy/audio/
H A DAudioHardwareGeneric.cpp46 : mOutput(0), mInput(0), mFd(-1), mMicMute(false) in AudioHardwareGeneric()
55 closeInputStream((AudioStreamIn *)mInput); in ~AudioHardwareGeneric()
113 if (mInput) { in openInputStream()
127 mInput = in; in openInputStream()
131 return mInput; in openInputStream()
135 if (mInput && in == mInput) { in closeInputStream()
136 delete mInput; in closeInputStream()
137 mInput = 0; in closeInputStream()
181 if (mInput) { in dump()
182 mInput->dump(fd, args); in dump()
/aosp12/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java46 private ParcelFileDescriptor mInput; field in PdfEditor
80 mInput = input; in PdfEditor()
83 mNativeDocument = nativeOpen(mInput.getFd(), size); in PdfEditor()
296 if (mInput != null) { in doClose()
297 IoUtils.closeQuietly(mInput); in doClose()
298 mInput = null; in doClose()
304 if (mInput == null) { in throwIfClosed()
H A DPdfRenderer.java123 private ParcelFileDescriptor mInput; field in PdfRenderer
169 mInput = input; in PdfRenderer()
172 mNativeDocument = nativeCreate(mInput.getFd(), size); in PdfRenderer()
264 if (mInput != null) { in doClose()
265 IoUtils.closeQuietly(mInput); in doClose()
266 mInput = null; in doClose()
272 if (mInput == null) { in throwIfClosed()
/aosp12/frameworks/av/media/libstagefright/
H A DMediaSync.cpp76 if (mInput != NULL) { in ~MediaSync()
77 mInput->consumerDisconnect(); in ~MediaSync()
106 if (mOutput != NULL && mInput != NULL) { in setSurface()
203 if (mInput != NULL) { in createInputSurface()
222 mInput = bufferConsumer; in createInputSurface()
343 mInput->setConsumerName(String8(name.c_str())); in setName()
625 status = mInput->detachBuffer(bufferItem.mSlot); in onFrameAvailableFromInput()
638 mInput->consumerDisconnect(); in onFrameAvailableFromInput()
691 mInput->consumerDisconnect(); in renderOneBufferItem_l()
752 status_t status = mInput->attachBuffer(&consumerSlot, oldBuffer); in returnBufferToInput_l()
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatCmdMessage.java38 private Input mInput; field in CatCmdMessage
103 mInput = ((GetInputParams) cmdParams).mInput; in CatCmdMessage()
145 mInput = in.readParcelable(Input.class.getClassLoader()); in CatCmdMessage()
179 dest.writeParcelable(mInput, 0); in writeToParcel()
229 return mInput; in geInput()
H A DCommandParams.java202 Input mInput = null; field in GetInputParams
207 mInput = input; in GetInputParams()
212 if (icon != null && mInput != null) { in setIcon()
213 mInput.icon = icon; in setIcon()
/aosp12/packages/apps/Nfc/src/com/android/nfc/handover/
H A DBluetoothPeripheralHandover.java117 BluetoothHidHost mInput; field in BluetoothPeripheralHandover
210 if (mA2dp == null || mHeadset == null || mInput == null) { in nextStepInit()
223 if (mInput.getConnectedDevices().contains(mDevice)) { in nextStepInit()
270 if (mInput.getConnectionState(mDevice) in nextStepDisconnect()
273 mInput.disconnect(mDevice); in nextStepDisconnect()
376 if (mInput.getConnectionState(mDevice) in nextStepConnect()
549 if (mInput != null) { in complete()
550 mBluetoothAdapter.closeProfileProxy(BluetoothProfile.HID_HOST, mInput); in complete()
555 mInput = null; in complete()
691 mInput = (BluetoothHidHost) proxy; in onServiceConnected()
[all …]
/aosp12/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicResize.java28 private Allocation mInput; field in ScriptIntrinsicResize
70 mInput = ain; in setInput()
93 if (aout == mInput) { in forEach_bicubic()
H A DScriptIntrinsicYuvToRGB.java33 private Allocation mInput; field in ScriptIntrinsicYuvToRGB
63 mInput = ain; in setInput()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DSettingsXml.java160 private final InputStream mInput; field in SettingsXml.ReadSectionImpl
170 mInput = input; in ReadSectionImpl()
172 mParser.setInput(mInput, StandardCharsets.UTF_8.name()); in ReadSectionImpl()
178 mInput = null; in ReadSectionImpl()
310 if (mInput != null) { in close()
311 mInput.close(); in close()
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/
H A DScriptIntrinsicResize.java30 private Allocation mInput; field in ScriptIntrinsicResize
80 mInput = ain;
103 if (aout == mInput) {
/aosp12/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java48 private InputMethodManager mInput; field in FindActionModeCallback
65 mInput = context.getSystemService(InputMethodManager.class); in FindActionModeCallback()
160 mInput.showSoftInput(mEditText, 0); in showSoftInput()
227 mInput.hideSoftInputFromWindow(mWebView.getWindowToken(), 0); in onDestroyActionMode()
241 mInput.hideSoftInputFromWindow(mWebView.getWindowToken(), 0); in onActionItemClicked()
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/qc/
H A DQCViewerFragment.java41 private EditText mInput; field in QCViewerFragment
57 mInput = v.findViewById(R.id.qc_uri_input); in onCreateView()
62 mUriString = mInput.getText().toString(); in onCreateView()
/aosp12/packages/apps/TV/tests/unit/src/com/android/tv/util/
H A DTvInputManagerHelperTest.java259 return inputWrapper == null ? null : inputWrapper.mInput; in createMockTvInputManager()
278 inputWrapper.mInput = in createTvInputInfo()
286 return inputWrapper.mInput; in createTvInputInfo()
290 TvInputInfo mInput; field in TvInputManagerHelperTest.TvInputInfoWrapper

123