/hardware/msm7k/libaudio/ |
AudioHardware.cpp | 603 char buffer[SIZE]; local 606 snprintf(buffer, SIZE, "\tmInit: %s\n", mInit? "true": "false"); 607 result.append(buffer); 608 snprintf(buffer, SIZE, "\tmMicMute: %s\n", mMicMute? "true": "false"); 609 result.append(buffer); 610 snprintf(buffer, SIZE, "\tmBluetoothNrec: %s\n", mBluetoothNrec? "true": "false"); 611 result.append(buffer); 612 snprintf(buffer, SIZE, "\tmBluetoothId: %d\n", mBluetoothId); 613 result.append(buffer); 703 ssize_t AudioHardware::AudioStreamOutMSM72xx::write(const void* buffer, size_t bytes 797 char buffer[SIZE]; local 1067 char buffer[SIZE]; local [all...] |
/bionic/libc/kernel/common/linux/mtd/ |
blktrans.h | 50 unsigned long block, char *buffer); 52 unsigned long block, char *buffer);
|
/bionic/libc/private/ |
ThreadLocalBuffer.h | 44 static void __bionic_tls_ ## name ## _key_destroy(void* buffer) { \ 45 free(buffer); \
|
/cts/suite/audio_quality/lib/include/audio/ |
AudioLocal.h | 28 class Buffer; 38 virtual bool startPlaybackOrRecord(android::sp<Buffer>& buffer, int numberRepetition = 1); 47 virtual bool doPlaybackOrRecord(android::sp<Buffer>& buffer) = 0; 73 android::sp<Buffer> mBuffer;
|
AudioRemote.h | 47 virtual bool startPlaybackOrRecord(android::sp<Buffer>& buffer, int numberRepetition = 1); 57 virtual bool startPlaybackOrRecord(android::sp<Buffer>& buffer, int numberRepetition = 1);
|
/development/host/windows/usb/api/ |
adb_interface.h | 59 @param[out] buffer Buffer for the serail number string. Can be NULL in
63 of the buffer. On the way out, if method failed and GetLastError
71 virtual bool GetSerialNumber(void* buffer,
116 @param[out] buffer Buffer for the name. Can be NULL in which case
120 of the buffer. On the way out if method failed and GetLastError
128 virtual bool GetInterfaceName(void* buffer,
|
/development/ndk/platforms/android-3/include/linux/mtd/ |
blktrans.h | 43 unsigned long block, char *buffer); 45 unsigned long block, char *buffer);
|
/external/chromium/webkit/glue/ |
webkit_glue.h | 184 ui::Clipboard::Buffer buffer); 187 void ClipboardReadAvailableTypes(ui::Clipboard::Buffer buffer, 192 void ClipboardReadText(ui::Clipboard::Buffer buffer, string16* result); 195 void ClipboardReadAsciiText(ui::Clipboard::Buffer buffer, std::string* result); 198 void ClipboardReadHTML(ui::Clipboard::Buffer buffer, string16* markup [all...] |
/external/e2fsprogs/ext2ed/ |
super_com.c | 123 char *ptr,buffer [80]; local 125 ptr=parse_word (command_line,buffer); 129 ptr=parse_word (ptr,buffer); 131 copy_num=atol (buffer); 142 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer); 143 strcpy (buffer,"show");dispatch (buffer);
|
/external/easymock/src/org/easymock/internal/matchers/ |
Captures.java | 36 public void appendTo(StringBuffer buffer) {
37 buffer.append("capture(").append(capture).append(")");
|
Compare.java | 40 public void appendTo(StringBuffer buffer) {
41 buffer.append(comparator + "(" + expected + ") " + operator.getSymbol()
|
Equals.java | 40 public void appendTo(StringBuffer buffer) {
41 ArgumentToString.appendArgument(expected, buffer);
|
/external/flac/libFLAC/include/private/ |
ogg_decoder_aspect.h | 75 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data); 77 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data);
|
ogg_encoder_aspect.h | 59 typedef FLAC__StreamEncoderWriteStatus (*FLAC__OggEncoderAspectWriteCallbackProxy)(const void *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data); 61 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data);
|
/external/guava/guava/src/com/google/common/collect/ |
Queues.java | 196 * @param buffer where to add the transferred elements 203 public static <E> int drain(BlockingQueue<E> q, Collection<? super E> buffer, int numElements, 205 Preconditions.checkNotNull(buffer); 216 added += q.drainTo(buffer, numElements - added); 222 buffer.add(e); 236 * @param buffer where to add the transferred elements 242 public static <E> int drainUninterruptibly(BlockingQueue<E> q, Collection<? super E> buffer, 244 Preconditions.checkNotNull(buffer); 252 added += q.drainTo(buffer, numElements - added); 266 buffer.add(e) [all...] |
/external/icu4c/common/unicode/ |
ucnvsel.h | 39 * A converter selector can be serialized into a buffer and reopened 115 * The buffer must remain valid and unchanged for the lifetime of the selector. 119 * @param buffer pointer to the serialized form of a converter selector; 121 * @param length the capacity of this buffer (can be equal to or larger than 129 ucnvsel_openFromSerialized(const void* buffer, int32_t length, UErrorCode* status); 132 * Serialize a selector into a linear buffer. 136 * @param buffer pointer to 32-bit-aligned memory to be filled with the 138 * @param bufferCapacity the capacity of this buffer 140 * @return the required buffer capacity to hold serialize data (even if the call fails 147 void* buffer, int32_t bufferCapacity, UErrorCode* status) [all...] |
/external/kernel-headers/original/linux/mtd/ |
blktrans.h | 42 unsigned long block, char *buffer); 44 unsigned long block, char *buffer);
|
/external/libusb/libusb/ |
sync.c | 58 * \param data a suitably-sized data buffer for either input or output 60 * \param wLength the length field for the setup packet. The data buffer should 77 unsigned char *buffer; local 84 buffer = malloc(LIBUSB_CONTROL_SETUP_SIZE + wLength); 85 if (!buffer) { 90 libusb_fill_control_setup(buffer, bmRequestType, bRequest, wValue, wIndex, 93 memcpy(buffer + LIBUSB_CONTROL_SETUP_SIZE, data, wLength); 95 libusb_fill_control_transfer(transfer, dev_handle, buffer, 154 unsigned char endpoint, unsigned char *buffer, int length, 164 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length [all...] |
/external/libusb_aah/libusb/ |
sync.c | 58 * \param data a suitably-sized data buffer for either input or output 60 * \param wLength the length field for the setup packet. The data buffer should 77 unsigned char *buffer; local 84 buffer = malloc(LIBUSB_CONTROL_SETUP_SIZE + wLength); 85 if (!buffer) { 90 libusb_fill_control_setup(buffer, bmRequestType, bRequest, wValue, wIndex, 93 memcpy(buffer + LIBUSB_CONTROL_SETUP_SIZE, data, wLength); 95 libusb_fill_control_transfer(transfer, dev_handle, buffer, 157 unsigned char endpoint, unsigned char *buffer, int length, 167 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length [all...] |
/external/llvm/include/llvm/ADT/ |
Optional.h | 38 new (storage.buffer) T(y); 42 new (storage.buffer) T(*O); 47 new (storage.buffer) T(std::forward<T>(y)); 51 new (storage.buffer) T(std::move(*O)); 59 new (storage.buffer) T(std::move(y)); 88 new (storage.buffer) T(y); 113 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); } 114 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
MaxForwards.java | 91 protected StringBuffer encodeBody(StringBuffer buffer) { 92 return buffer.append(maxForwards);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
AddressParametersParser.java | 46 protected AddressParametersParser(String buffer) { 47 super(buffer);
|
ParametersParser.java | 47 protected ParametersParser(String buffer) { 48 super(buffer);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
AddressHeaderParser.java | 52 protected AddressHeaderParser(String buffer) { 53 super(buffer);
|
/external/qemu/android/protocol/ |
core-connection.h | 80 * buffer Buffer to write. 88 const void* buffer, 96 * buffer Buffer to read data to. 104 void* buffer, 117 * routine that string is not NULL, its buffer must be freed with 'free'. 130 * routine that string is not NULL, its buffer must be freed with 'free'.
|