Searched refs:input (Results 126 - 150 of 229) sorted by relevance

12345678910

/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp734 InputTree::const_bfs_iterator input, inputEnd = pLDInfo.inputs().bfs_end(); local
735 for (input = pLDInfo.inputs().bfs_begin(); input != inputEnd; ++input) {
736 if (Input::DynObj == (*input)->type()) {
738 if ((*input)->attribute()->isAddNeeded()) {
740 if (!(*input)->attribute()->isAsNeeded()) {
741 dynstr += (*input)->name().size() + 1;
745 else if ((*input)->isNeeded()) {
746 dynstr += (*input)
1008 InputTree::const_bfs_iterator input, inputEnd = pLDInfo.inputs().bfs_end(); local
1547 mcld::InputTree::const_bfs_iterator input, inEnd = pInfo.inputs().bfs_end(); local
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java207 // no newline for an empty input array.
242 byte[] input = { (byte) 0x61, (byte) 0x62, (byte) 0x63 };
248 encoder.process(input, 0, 3, false);
252 encoder.process(input, 0, 3, false);
256 encoder.process(input, 0, 1, false);
260 encoder.process(input, 0, 1, false);
264 encoder.process(input, 0, 1, false);
268 encoder.process(input, 0, 2, false);
272 encoder.process(input, 0, 2, false);
276 encoder.process(input,
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java98 DataInputStream input = new DataInputStream(socket.getInputStream());
116 String line = input.readLine();
138 line = input.readLine();
146 length = Integer.parseInt(input.readLine(), 16);
149 input.readFully(buffer);
150 input.readLine();
151 length = Integer.parseInt(input.readLine(), 16);
153 input.readLine();
156 input.readFully(buffer);
167 input
[all...]
/frameworks/av/media/libmedia/
H A DIAudioPolicyService.cpp193 virtual status_t startInput(audio_io_handle_t input) argument
197 data.writeInt32(input);
202 virtual status_t stopInput(audio_io_handle_t input) argument
206 data.writeInt32(input);
211 virtual void releaseInput(audio_io_handle_t input) argument
215 data.writeInt32(input);
477 audio_io_handle_t input = getInput(inputSource, local
482 reply->writeInt32(static_cast <int>(input));
488 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
489 reply->writeInt32(static_cast <uint32_t>(startInput(input)));
495 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
502 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
[all...]
H A DAudioRecord.cpp52 ALOGE("AudioSystem could not query the input buffer size.");
62 // We double the size of input buffer for ping pong use of record buffer.
168 audio_io_handle_t input = AudioSystem::getInput(inputSource, local
173 if (input == 0) {
174 ALOGE("Could not get audio input for record source %d", inputSource);
198 frameCount, input);
220 // TODO: add audio hardware input latency here
227 mInput = input;
430 audio_io_handle_t input)
442 sp<IAudioRecord> record = audioFlinger->openRecord(getpid(), input,
425 openRecord_l( uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, int frameCount, audio_io_handle_t input) argument
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java486 * such kind of input but must never output it unless the target is very specific
487 * to the device which is able to parse the malformed input.
658 * Guesses the format of input image. Currently just the first few bytes are used.
661 * @param input Image as byte array.
664 public static String guessImageType(final byte[] input) { argument
665 if (input == null) {
668 if (input.length >= 3 && input[0] == 'G' && input[1] == 'I' && input[
[all...]
/frameworks/base/services/java/com/android/server/
H A DWiredAccessoryManager.java35 import com.android.server.input.InputManagerService;
36 import com.android.server.input.InputManagerService.WiredAccessoryCallbacks;
37 import static com.android.server.input.InputManagerService.SW_HEADPHONE_INSERT;
38 import static com.android.server.input.InputManagerService.SW_MICROPHONE_INSERT;
39 import static com.android.server.input.InputManagerService.SW_HEADPHONE_INSERT_BIT;
40 import static com.android.server.input.InputManagerService.SW_MICROPHONE_INSERT_BIT;
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp789 int input = 0; local
792 AudioRecord::getMinFrameCount(&input, sampleRate,
793 AUDIO_FORMAT_PCM_16_BIT, AUDIO_CHANNEL_IN_MONO) != NO_ERROR || input <= 0) {
797 ALOGD("reported frame count: output %d, input %d", output, input);
802 if (input < sampleCount * 2) {
803 input = sampleCount * 2;
805 ALOGD("adjusted frame count: output %d, input %d", output, input);
813 AUDIO_CHANNEL_IN_MONO, input) !
869 int16_t input[sampleCount]; local
[all...]
/frameworks/av/libvideoeditor/vss/src/
H A DVideoEditorResampler.cpp146 void LVAudioresample_LowQuality(M4OSA_Int16* out, M4OSA_Int16* input, argument
154 memcpy(context->mInput,input,(context->nbSamples * context->nbChannels * sizeof(int16_t)));
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp95 static jint getEastAsianWidth(JNIEnv* env, jobject obj, jchar input) argument
97 int width = u_getIntPropertyValue(input, UCHAR_EAST_ASIAN_WIDTH);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DLearning_StochasticLinearRanker.java123 ByteArrayInputStream input = new ByteArrayInputStream(modelData);
124 ObjectInputStream objStream = new ObjectInputStream(input);
/frameworks/native/include/android/
H A Dnative_activity.h27 #include <android/input.h>
160 * for example, to pause a game when it loses input focus.
196 * The input queue for this native activity's window has been created.
197 * You can use the given input queue to start retrieving input events.
202 * The input queue for this native activity's window is being destroyed.
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.h82 JNIEnv *env, bool input, jobjectArray *bufArray) const;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosink/
H A DMediaEncoderFilter.java138 /** The input region to read from the frame. The corners of this quad are
139 * mapped to the output rectangle. The input frame ranges from (0,0)-(1,1),
204 // Add input port- will accept RGBA GLFrames
358 // Workaround to bypass the first 2 input frames for skipping.
360 // the compressed video frame data for the first input video frame.
388 // Get input frame
389 Frame input = pullInput("videoframe");
403 if (skipFrameAndModifyTimestamp(input.getTimestamp())) {
407 mTimestampNs = input.getTimestamp();
414 mProgram.process(input, mScree
[all...]
/frameworks/av/include/media/
H A DAudioSystem.h131 // return the number of input frames lost by HAL implementation, or 0 if the handle is invalid
208 static status_t startInput(audio_io_handle_t input);
209 static status_t stopInput(audio_io_handle_t input);
210 static void releaseInput(audio_io_handle_t input);
258 // indicate a change in the configuration of an output or input: keeps the cached
259 // values for output/input parameters up-to-date in client process
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp76 // same name in input
178 // arguments and flags from input .o files.
392 InputTree::const_bfs_iterator input, inputEnd = pLDInfo.inputs().bfs_end(); local
393 for (input = pLDInfo.inputs().bfs_begin(); input != inputEnd; ++input) {
394 if (Input::DynObj == (*input)->type()) {
396 if ((*input)->attribute()->isAddNeeded()) {
398 if (!(*input)->attribute()->isAsNeeded()) {
399 strcpy((strtab + strtabsize), (*input)
[all...]
/frameworks/rs/
H A DrsProgram.cpp56 uint32_t input = 0; local
61 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
62 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.cpp141 // Get the input buffers
148 jobject input = env->GetObjectArrayElement(inputs, i); local
149 if (input) {
150 NativeFrame* native_frame = ConvertFromJava<NativeFrame>(env, input);
152 ALOGE("NativeProgram: Could not grab NativeFrame input %d!", i);
H A Djni_shader_program.cpp105 // Get the input frames
108 jobject input = env->GetObjectArrayElement(inputs, i); local
109 const GLFrame* input_frame = ConvertFromJava<GLFrame>(env, input);
110 if (!input || !input_frame) {
111 ALOGE("ShaderProgram: invalid input frame %d!", i);
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java350 public void recordEntireHistory(NetworkStatsHistory input) { argument
351 recordHistory(input, Long.MIN_VALUE, Long.MAX_VALUE);
359 public void recordHistory(NetworkStatsHistory input, long start, long end) { argument
362 for (int i = 0; i < input.bucketCount; i++) {
363 final long bucketStart = input.bucketStart[i];
364 final long bucketEnd = bucketStart + input.bucketDuration;
369 entry.rxBytes = getLong(input.rxBytes, i, 0L);
370 entry.rxPackets = getLong(input.rxPackets, i, 0L);
371 entry.txBytes = getLong(input.txBytes, i, 0L);
372 entry.txPackets = getLong(input
[all...]
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp282 audio_io_handle_t input = mpAudioPolicy->get_input(mpAudioPolicy, inputSource, samplingRate, local
285 if (input == 0) {
286 return input;
288 // create audio pre processors according to input source
291 return input;
293 ssize_t idx = mInputs.indexOfKey(input);
297 mInputs.add(input, inputDesc);
305 sp<AudioEffect> fx = new AudioEffect(NULL, &effect->mUuid, -1, 0, 0, audioSession, input);
308 ALOGW("Failed to create Fx %s on input %d", effect->mName, input);
321 startInput(audio_io_handle_t input) argument
331 stopInput(audio_io_handle_t input) argument
341 releaseInput(audio_io_handle_t input) argument
1465 aps_close_input(void *service, audio_io_handle_t input) argument
[all...]
H A DAudioPolicyService.h82 virtual status_t startInput(audio_io_handle_t input);
83 virtual status_t stopInput(audio_io_handle_t input);
84 virtual void releaseInput(audio_io_handle_t input);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java86 * @param input the file from which to read the bitmap content
93 public static Bitmap createBitmap(File input, boolean isMutable, Density density) argument
96 Bitmap_Delegate delegate = new Bitmap_Delegate(ImageIO.read(input), Config.ARGB_8888);
104 * @param input the stream from which to read the bitmap content
111 public static Bitmap createBitmap(InputStream input, boolean isMutable, Density density) argument
114 Bitmap_Delegate delegate = new Bitmap_Delegate(ImageIO.read(input), Config.ARGB_8888);
/frameworks/native/libs/gui/
H A DISurfaceTexture.cpp108 const QueueBufferInput& input, QueueBufferOutput* output) {
112 data.write(input);
233 QueueBufferInput input(data);
237 status_t result = queueBuffer(buf, input, output);
107 queueBuffer(int buf, const QueueBufferInput& input, QueueBufferOutput* output) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Drate_control.cpp25 void targetBitCalculation(void *input);
41 PV_STATUS RC_UpdateBXRCParams(void *input); Parameters update for target bitrate or framerate change
50 PV_STATUS RC_Initialize(void *input) argument
52 VideoEncData *video = (VideoEncData *) input;
416 PV_STATUS RC_UpdateBXRCParams(void *input) argument
418 VideoEncData *video = (VideoEncData *) input;
529 void targetBitCalculation(void *input) argument
531 VideoEncData *video = (VideoEncData *) input;
699 void calculateQuantizer_Multipass(void *input) argument
701 VideoEncData *video = (VideoEncData *) input;
[all...]

Completed in 1934 milliseconds

12345678910