Searched refs:written (Results 1 - 17 of 17) sorted by relevance

/hardware/libhardware/modules/vibrator/
H A Dvibrator.c46 int to_write, written, ret, fd; local
56 written = TEMP_FAILURE_RETRY(write(fd, value, to_write));
58 if (written == -1) {
60 } else if (written != to_write) {
/hardware/ril/reference-ril/
H A Datchannel.c476 ssize_t written; local
489 written = write (s_fd, s + cur, len - cur);
490 } while (written < 0 && errno == EINTR);
492 if (written < 0) {
496 cur += written;
502 written = write (s_fd, "\r" , 1);
503 } while ((written < 0 && errno == EINTR) || (written == 0));
505 if (written < 0) {
515 ssize_t written; local
[all...]
H A Dreference-ril.c1664 ssize_t written, rlen; local
1680 written = write (fd, cmd + cur, len - cur);
1681 } while (written < 0 && errno == EINTR);
1683 if (written < 0) {
1689 cur += written;
/hardware/intel/common/libmix/mix_audio/src/
H A Dmixaudio.c4 The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel’s prior express written permission.
305 g_debug("_finalized(). bytes written=%" G_GUINT64_FORMAT, mix->bytes_written);
1493 ssize_t written = 0; local
1506 written = writev(mix->fileDescriptor, in, iovincnt);
1507 if (written >= 0) mix->bytes_written += written;
1508 g_debug("writev() returned %d. Total %" G_GUINT64_FORMAT, written, mix->bytes_written);
1522 written = writev(mix->fileDescriptor, in, iovincnt);
1523 if (written > 0) mix->bytes_written += written;
1624 ssize_t written = 0; local
[all...]
/hardware/qcom/audio/hal/
H A Daudio_hw.h165 uint64_t written; /* total frames written, not cleared when entering standby */ member in struct:stream_out
H A Daudio_hw.c1740 out->written += bytes / (out->config.channels * sizeof(short));
1825 int64_t signed_frames = out->written - kernel_buffer_size + avail;
2434 /* out->written = 0; by calloc() */
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
H A DLocEngAdapter.cpp14 * from this software without specific prior written permission.
164 size_t written = fwrite(data, 1, len, file); local
171 if (written != len) {
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
H A DLocEngAdapter.cpp14 * from this software without specific prior written permission.
164 size_t written = fwrite(data, 1, len, file); local
171 if (written != len) {
/hardware/qcom/media/msm8974/mm-core/omxcore/
H A DAndroid.mk13 # products derived from this software without specific prior written
/hardware/intel/audio_media/hdmi/
H A Dtinyaudio_hw.c158 ssize_t written; local
162 written = readlink(id_filepath, number_filepath, sizeof(number_filepath));
163 if (written < 0) {
166 } else if (written >= (ssize_t)sizeof(id_filepath)) {
630 ALOGV("%s : silence written", __func__);
/hardware/qcom/audio/msm8909/hal/
H A Daudio_hw.h178 uint64_t written; /* total frames written, not cleared when entering standby */ member in struct:stream_out
H A Daudio_hw.c1972 // increase written size during SSR to avoid mismatch
1973 // with the written frames count in AF
1975 out->written += bytes / (out->config.channels * sizeof(short));
2045 out->written += bytes / (out->config.channels * sizeof(short));
2115 *dsp_frames = out->written;
2172 int64_t signed_frames = out->written - kernel_buffer_size + avail;
2856 /* out->written = 0; by calloc() */
/hardware/qcom/display/msm8996/sdm/libs/core/fb/
H A Dhw_primary.cpp15 * from this software without specific prior written permission.
352 ssize_t written = Sys::pwrite_(fd, display_config_strings_.at(index).c_str(), local
354 if (written > 0) {
676 if (HWDevice::SysFsWrite(kAutoRefreshNode, buffer, bytes) <= 0) { // Returns bytes written
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/test/
H A Domx_vdec_test.cpp13 products derived from this software without specific prior written
186 * function to make sure the entire buffer is written */
189 size_t written = 0, to_write = size * nmemb; local
192 while (written < to_write) {
196 size_t temp = fwrite(ptr2 + written, 1, to_write - written, stream);
202 written += temp;
205 return written;
/hardware/ril/libril/
H A Dril.cpp2146 ssize_t written; local
2148 written = write (fd, toWrite + writeOffset,
2150 } while (written < 0 && ((errno == EINTR) || (errno == EAGAIN)));
2152 if (written >= 0) {
2153 writeOffset += written;
2154 } else { // written < 0
2161 RLOGE("RIL Response bytes written:%d", writeOffset);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
H A Dconfigure.sh78 --log=yes|no|FILE file configure log is written to [config.log]
954 # ASFLAGS is written here instead of using check_add_asflags
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm94 ;# Except for the fact that the destination registers get written

Completed in 1806 milliseconds