/external/libyuv/files/unit_test/testdata/ |
arm_v7.txt | 12 Serial : 0000000000000000
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_debug_refcnt.c | 52 /* TODO: maybe move this serial machinery to a stand-alone module and 81 * Return a small integer serial number for the given pointer. 86 unsigned serial; local 101 serial = (unsigned) (uintptr_t) util_hash_table_get(serials_hash, p); 102 if (!serial) { 106 serial = ++serials_last; 107 if (!serial) { 112 util_hash_table_set(serials_hash, p, (void *) (uintptr_t) serial); 117 *pserial = serial; 124 * Free the serial number for the given pointer 187 unsigned serial; local [all...] |
/external/python/cpython2/PC/VS7.1/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 28 print " * PY_RELEASE_SERIAL = %d" % serial 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print " * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3)
|
/external/python/cpython2/PC/VS8.0/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 28 print(" * PY_RELEASE_SERIAL = %d" % serial) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/python/cpython2/PC/VS9.0/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 28 print(" * PY_RELEASE_SERIAL = %d" % serial) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/python/cpython2/PCbuild/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 28 print(" * PY_RELEASE_SERIAL = %d" % serial) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/syslinux/core/ |
keywords | 27 serial
|
/external/syslinux/gpxe/src/config/ |
console.h | 18 //#define CONSOLE_SERIAL /* Serial port */
|
/external/toolchain-utils/go/android/ |
go_shamu_exec | 6 # must exist to tell adb the serial number of the device.
|
go_volantis_exec | 6 # must exist to tell adb the serial number of the device.
|
/system/vold/ |
Ext4Crypt.h | 29 bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral); 31 bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token, 35 bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token, const char* secret); 38 bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial, int flags);
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Include/Library/ |
GdbSerialLib.h | 2 Basic serial IO abstaction for GDB
23 data buts, and stop bits on a serial device. This call is optional as the serial
28 @param Parity The type of parity to use on this serial device. A Parity value of
30 @param DataBits The number of data bits to use on the serial device. A DataBits
32 @param StopBits The number of stop bits to use on this serial device. A StopBits
37 @retval EFI_DEVICE_ERROR The serial device could not be coonfigured.
|
/frameworks/base/core/java/android/hardware/ |
SerialManager.java | 45 * Returns a string array containing the names of available serial ports 47 * @return names of available serial ports 59 * The speed of the serial port must be one of: 64 * @param name of the serial port 65 * @param speed at which to open the serial port 66 * @return the serial port 76 throw new IOException("Could not open serial port " + name);
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
DeviceUtilStatsMonitor.java | 100 public Integer getUtilForDevice(String serial) { 101 Integer util = mDeviceUtil.get(serial); 139 * @param serial device serial number 143 public boolean addMissingSample(String serial) { 168 String serial = goneSerialEntry.getKey(); local 169 if (!goneSerialEntry.getValue().addMissingSample(serial)) { 170 CLog.d("Forgetting device %s", serial); 171 mDeviceUtilMap.remove(serial); 179 /** a map of device serial to device records * [all...] |
/system/core/adb/ |
transport.cpp | 156 if (read_packet(fd, t->serial, &p)) { 157 D("%s: failed to read packet from transport socket on fd %d", t->serial, fd); 174 if (write_packet(t->transport_socket, t->serial, &p)) { 197 android::base::StringPrintf("<-%s", (t->serial != nullptr ? t->serial : "transport"))); 198 D("%s: starting read_transport thread on fd %d, SYNC online (%d)", t->serial, t->fd, 205 if (write_packet(t->fd, t->serial, &p)) { 207 D("%s: failed to write SYNC packet", t->serial); 211 D("%s: data pump started", t->serial); 219 D("%s: remote read failed for transport", t->serial); 922 const char* serial = t->serial; local [all...] |
adb_client.h | 43 void adb_set_transport(TransportType type, const char* _Nullable serial, TransportId transport_id); 44 void adb_get_transport(TransportType* _Nullable type, const char* _Nullable* _Nullable serial, 52 // exactly one emulator connected (or if you use -s <serial> with a <serial> 55 const char* _Nullable serial); 61 // Create a host command corresponding to selected transport type/serial.
|
/device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/SerialIoLib/ |
SerialPortLib.c | 2 UART Serial Port library functions
60 Initialize the serial device hardware.
63 If the serial device was successfuly initialized, then return RETURN_SUCCESS.
64 If the serial device could not be initialized, then return RETURN_DEVICE_ERROR.
66 @retval RETURN_SUCCESS The serial device was initialized.
112 Write data from buffer to serial device.
114 Writes NumberOfBytes data bytes from Buffer to the serial device.
115 The number of bytes actually written to the serial device is returned.
123 @param NumberOfBytes Number of bytes to written to the serial device.
126 @retval >0 The number of bytes written to the serial device. [all...] |
/external/curl/tests/certs/scripts/ |
genroot.sh | 39 SERIAL=`/usr/bin/env perl -e "$GETSERIAL"` 41 echo SERIAL=$SERIAL PREFIX=$PREFIX DURATION=$DURATION KEYSIZE=$KEYSIZE 49 echo "openssl x509 -set_serial $SERIAL -extfile $PREFIX-ca.prm -days $DURATION -req -signkey $PREFIX-ca.key -in $PREFIX-ca.csr -out $PREFIX-$SERIAL.ca-cacert -sha1 " 51 $OPENSSL x509 -set_serial $SERIAL -extfile $PREFIX-ca.prm -days $DURATION -req -signkey $PREFIX-ca.key -in $PREFIX-ca.csr -out $PREFIX-$SERIAL-ca.cacert -sha1 53 echo "openssl x509 -text -in $PREFIX-$SERIAL-ca.cacert -nameopt multiline > $PREFIX-ca.cacert " 54 $OPENSSL x509 -text -in $PREFIX-$SERIAL-ca.cacert -nameopt multiline > $PREFIX-ca.cacert
|
/external/mesa3d/src/gallium/auxiliary/rbug/ |
rbug_connection.c | 64 * Also returns the serial for the message, serial is not touched for replys. 70 rbug_get_message(struct rbug_connection *c, uint32_t *serial) 107 else if (serial) 108 *serial = c->recv_serial++; 156 * Ups the send_serial and sets the serial argument if supplied. 158 int rbug_connection_send_finish(struct rbug_connection *c, uint32_t *serial) 162 else if (serial) 163 *serial = c->send_serial++;
|
/tools/tradefederation/core/src/com/android/tradefed/command/remote/ |
DeviceTracker.java | 63 * Mark given device serial as freed and clear the command result if any. 66 * serial cannot be found 68 public ITestDevice freeDevice(String serial) { 69 mDeviceLastCommandMap.remove(serial); 70 return mAllocatedDeviceMap.remove(serial); 86 * Return a previously allocated device that matches given serial. 88 * @param serial 91 public ITestDevice getDeviceForSerial(String serial) { 92 return mAllocatedDeviceMap.get(serial);
|
/external/syslinux/core/lwip/src/include/lwip/ |
sio.h | 31 * This is the interface to the platform specific serial IO module 55 * Opens a serial device for communication. 58 * @return handle to serial device if successful, NULL otherwise 65 * Sends a single character to the serial device. 68 * @param fd serial device handle 77 * Receives a single character from the serial device. 79 * @param fd serial device handle 88 * Reads from the serial device. 90 * @param fd serial device handle 103 * Tries to read from the serial device. Same as sio_read but return [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Library/SemiHostingSerialPortLib/ |
SerialPortLib.c | 2 Serial I/O Port library functions with no library constructor/destructor
24 Programmed hardware of Serial port.
43 Write data to serial device.
49 @retval !0 Actual number of bytes writed to serial device.
106 Read data from serial device and save the datas in buffer.
112 @retval !0 Aactual number of bytes read from serial device.
|
/external/kernel-headers/original/uapi/linux/ |
serial.h | 2 * include/linux/serial.h 40 * For the close wait times, 0 means wait forever for serial port to 47 * These are the supported serial types. 81 * Multiport serial configuration structure --- external structure 98 * Serial input interrupt line counters -- external structure 110 * Serial interface for controlling RS485 settings on chips with suitable
|
/hardware/interfaces/radio/1.1/ |
IRadioResponse.hal | 27 * @param info Response info struct containing response type, serial no. and error 40 * @param info Response info struct containing response type, serial no. and error 51 * @param info Response info struct containing response type, serial no. and error 67 * @param info Response info struct containing response type, serial no. and error 77 * @param info Response info struct containing response type, serial no. and error 90 * @param info Response info struct containing response type, serial no. and error
|
/system/bt/hci/include/ |
userial.h | 19 // This module manages the serial port over which HCI commands 52 // Opens the given serial port. Returns true if successful, false otherwise. 54 // buffers from data read off the serial port. If you wish to pause the 57 // serial port was successfully opened and buffer production has started. It 63 // Reads a maximum of |len| bytes from the serial port into |p_buffer|. 68 // Writes a maximum of |len| bytes from |p_data| to the serial port.
|