/device/linaro/bootloader/edk2/ArmVirtPkg/Library/FdtPL011SerialPortLib/ |
FdtPL011SerialPortLib.c | 2 Serial I/O Port library functions with base address discovered from FDT
46 Program hardware of Serial port
89 Write data to serial device.
95 @retval !0 Actual number of bytes written to serial device.
112 Read data from serial device and save the data in buffer.
118 @retval !0 Actual number of bytes read from serial device.
155 data bits, and stop bits on a serial device.
161 serial interface. A ReceiveFifoDepth value of 0 will use
169 @param Parity The type of parity to use on this serial device. A Parity value of
172 @param DataBits The number of data bits to use on the serial device. A DataBits [all...] |
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
miniterm.py | 3 # Very simple serial terminal 11 import sys, os, serial, threading 13 from serial.tools.list_ports import comports 17 EXITCHARCTER = serial.to_bytes([0x1d]) # GS/CTRL+] 18 MENUCHARACTER = serial.to_bytes([0x14]) # Menu: CTRL+T 62 'version': getattr(serial, 'VERSION', 'unknown version'), 84 LF = serial.to_bytes([10]) 85 CR = serial.to_bytes([13]) 86 CRLF = serial.to_bytes([13, 10]) 88 X00 = serial.to_bytes([0] [all...] |
/hardware/interfaces/radio/1.0/vts/functional/ |
radio_hidl_hal_icc.cpp | 33 int serial = GetRandomSerialNumber(); local 42 radio->supplyIccPinForApp(serial, hidl_string("test1"), 45 EXPECT_EQ(serial, radioRsp->rspInfo.serial); 56 int serial = GetRandomSerialNumber(); local 65 radio->supplyIccPukForApp(serial, hidl_string("test1"), hidl_string("test2"), 68 EXPECT_EQ(serial, radioRsp->rspInfo.serial); 79 int serial = GetRandomSerialNumber(); local 88 radio->supplyIccPin2ForApp(serial, hidl_string("test1") 102 int serial = GetRandomSerialNumber(); local 125 int serial = GetRandomSerialNumber(); local 148 int serial = GetRandomSerialNumber(); local 171 int serial = GetRandomSerialNumber(); local 199 int serial = GetRandomSerialNumber(); local 224 int serial = GetRandomSerialNumber(); local 241 int serial = GetRandomSerialNumber(); local 256 int serial = GetRandomSerialNumber(); local 270 int serial = GetRandomSerialNumber(); local 287 int serial = GetRandomSerialNumber(); local 305 int serial = GetRandomSerialNumber(); local [all...] |
radio_hidl_hal_sms.cpp | 25 int serial = GetRandomSerialNumber(); local 30 radio->sendSms(serial, msg); 34 EXPECT_EQ(serial, radioRsp->rspInfo.serial); 49 int serial = GetRandomSerialNumber(); local 54 radio->sendSMSExpectMore(serial, msg); 61 EXPECT_EQ(serial, radioRsp->rspInfo.serial); 75 int serial = GetRandomSerialNumber(); local 78 radio->acknowledgeLastIncomingGsmSms(serial, success 96 int serial = GetRandomSerialNumber(); local 115 int serial = GetRandomSerialNumber(); local 159 int serial = GetRandomSerialNumber(); local 183 int serial = GetRandomSerialNumber(); local 233 int serial = GetRandomSerialNumber(); local 252 int serial = GetRandomSerialNumber(); local 273 int serial = GetRandomSerialNumber(); local 302 int serial = GetRandomSerialNumber(); local 326 int serial = GetRandomSerialNumber(); local 380 int serial = GetRandomSerialNumber(); local 433 int serial = GetRandomSerialNumber(); local [all...] |
radio_hidl_hal_data.cpp | 25 int serial = GetRandomSerialNumber(); local 27 radio->getDataRegistrationState(serial); 31 EXPECT_EQ(serial, radioRsp->rspInfo.serial); 42 int serial = GetRandomSerialNumber(); local 70 radio->setupDataCall(serial, radioTechnology, dataProfileInfo, modemCognitive, roamingAllowed, 75 EXPECT_EQ(serial, radioRsp->rspInfo.serial); 90 int serial = GetRandomSerialNumber(); local 94 radio->deactivateDataCall(serial, cid, reasonRadioShutDown) 112 int serial = GetRandomSerialNumber(); local 131 int serial = GetRandomSerialNumber(); local 174 int serial = GetRandomSerialNumber(); local 192 int serial = GetRandomSerialNumber(); local [all...] |
/external/openssh/regress/ |
krl.sh | 23 # A specification that revokes some certificates by serial numbers 24 # The serial pattern is chosen to ensure the KRL includes list, range and 27 serial: 1-4 28 serial: 10 29 serial: 15 30 serial: 30 31 serial: 50 32 serial: 999 34 serial: 500 35 serial: 50 [all...] |
/hardware/interfaces/radio/1.1/vts/functional/ |
radio_hidl_hal_api.cpp | 24 int serial = GetRandomSerialNumber(); local 26 radio_v1_1->setSimCardPower_1_1(serial, CardPowerState::POWER_DOWN); 29 EXPECT_EQ(serial, radioRsp_v1_1->rspInfo.serial); 43 int serial = GetRandomSerialNumber(); local 59 radio_v1_1->startNetworkScan(serial, request); 62 EXPECT_EQ(serial, radioRsp_v1_1->rspInfo.serial); 78 int serial = GetRandomSerialNumber(); local 84 radio_v1_1->startNetworkScan(serial, request) 102 int serial = GetRandomSerialNumber(); local 121 int serial = GetRandomSerialNumber(); local 226 int serial = GetRandomSerialNumber(); local 241 int serial = GetRandomSerialNumber(); local [all...] |
/tools/tradefederation/core/src/com/android/tradefed/device/ |
DeviceUnresponsiveException.java | 23 @SuppressWarnings("serial") 37 * @deprecated use {@link #DeviceUnresponsiveException(String msg, String serial)} instead 49 public DeviceUnresponsiveException(String msg, String serial) { 50 super(msg, serial); 60 * {@link #DeviceUnresponsiveException(String msg, Throwable cause, String serial)} instead 73 public DeviceUnresponsiveException(String msg, Throwable cause, String serial) { 74 super(msg, cause, serial);
|
DeviceDisconnectedException.java | 38 * @deprecated use {@link #DeviceDisconnectedException(String msg, String serial)} instead 50 public DeviceDisconnectedException(String msg, String serial) { 51 super(msg, serial); 61 * {@link #DeviceDisconnectedException(String msg, Throwable cause, String serial)} instead 74 public DeviceDisconnectedException(String msg, Throwable cause, String serial) { 75 super(msg, cause, serial);
|
/external/devlib/devlib/utils/ |
serial_port.py | 21 import serial 36 """Set the DTR line of the specified serial connection to the specified state 48 conn = serial.Serial(*args, **kwargs) 49 except serial.SerialException as e: 60 # chacters are sent to the serial. If two sendline s are issued 62 # into the serial device before the first one has finished, causing 75 """Write a single line out to serial charcter-by-character. This will ensure that nothing will 88 Opens a serial connection to a device. 95 All arguments are passed into the __init__ of serial.Serial. Se [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugPortDxe/ |
DebugPortDxe.uni | 4 // This driver binds exclusively to a standard UART serial port on the controller handle,
5 // and initializes serial Io interface, publishs Debug Port and Device Path Protocol.
19 #string STR_MODULE_ABSTRACT #language en-US "Produces Debug Port protocol to be used by debug agent to communicate with the remote debug host and initializes serial Io interface, publishes Debug Port and Device Path Protocol."
21 #string STR_MODULE_DESCRIPTION #language en-US "This driver binds exclusively to a standard UART serial port on the controller handle, and initializes serial Io interface, publishes Debug Port and Device Path Protocol."
|
/device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/FtdiUsbSerialDxe/ |
ReadMe.txt | 2 === FTDI USB SERIAL OVERVIEW ===
5 for FTDI8U232AM based USB-to-Serial adapters.
9 Serial Input: Functional on real hardware.
10 Serial Output: Functional on real hardware.
28 An FTDI8U232AM based USB-To-Serial adapter, the UEFI Shell, and the SerialTest application
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/SerialPortLib/ |
SerialPortLib.c | 2 Serial I/O Port library functions with no library constructor/destructor
45 Initialize Serial Port
98 Common function to initialize UART Serial device and USB Serial device.
119 Write data to serial device.
128 @retval !0 Actual number of bytes writed to serial device.
149 // Wait for the serial port to be ready.
161 Common function to write data to UART Serial device and USB Serial device.
182 Read data from serial device and save the datas in buffer. [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificateSerialNumber.java | 55 private SerialNumber serial; field in class:CertificateSerialNumber 60 * @param serial the serial number for the certificate. 63 this.serial = new SerialNumber(num); 69 * @param serial the serial number for the certificate. 72 this.serial = new SerialNumber(num); 78 * @param in the DerInputStream to read the serial number from. 82 serial = new SerialNumber(in); 88 * @param in the InputStream to read the serial number from [all...] |
/sdk/bash_completion/ |
adb.bash | 27 local where i cur serial 30 serial="${ANDROID_SERIAL:-none}" 47 serial=${cur} 78 _adb_cmd_install "$serial" $i 81 _adb_cmd_sideload "$serial" $i 84 _adb_cmd_pull "$serial" $i 87 _adb_cmd_push "$serial" $i 96 _adb_cmd_shell "$serial" $i 99 _adb_cmd_uninstall "$serial" $i 110 local serial i cur wher [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
SerialIo.h | 2 Serial IO protocol as defined in the UEFI 2.0 specification.
4 Abstraction of a basic serial device. Targeted at 16550 UART, but
89 // Serial IO Member Functions
92 Reset the serial device.
97 @retval EFI_DEVICE_ERROR The serial device could not be reset.
108 data bits, and stop bits on a serial device.
114 serial interface. A ReceiveFifoDepth value of 0 will use
120 @param Parity The type of parity to use on this serial device. A Parity value of
122 @param DataBits The number of data bits to use on the serial device. A DataBits
124 @param StopBits The number of stop bits to use on this serial device. A StopBits [all...] |
/external/autotest/client/cros/i2c/ |
usb_to_i2c.py | 13 import serial 104 '''Connects to NXP via serial port. 106 @param device_path: The device path of serial port. 109 self.logger.info('Setup serial device... [%s]', device_path) 111 self.serial = serial.Serial(port=self.device_path, 113 bytesize=serial.EIGHTBITS, 114 parity=serial.PARITY_NONE, 115 stopbits=serial.STOPBITS_ONE [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/SerialIo/ |
SerialIo.c | 18 Serial IO protocol as defined in the EFI 1.0 specification.
20 Abstraction of a basic serial device. Targeted at 16550 UART, but
30 EFI_GUID_STRING(&gEfiSerialIoProtocolGuid, "SerialIo Protocol", "EFI 1.0 Serial IO Protocol");
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseDebugLibSerialPort/ |
BaseDebugLibSerialPort.uni | 2 // Instance of Debug Library based on Serial Port Library.
18 #string STR_MODULE_ABSTRACT #language en-US "Instance of Debug Library based on Serial Port Library"
20 #string STR_MODULE_DESCRIPTION #language en-US "It uses Print Library to produce formatted output strings to a serial port device."
|
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/ |
DebugCommunicationLibSerialPort.uni | 4 // Debug Communication Library instance based on serial port.
18 #string STR_MODULE_ABSTRACT #language en-US "Debug Communication Library instance based on serial port"
20 #string STR_MODULE_DESCRIPTION #language en-US "Debug Communication Library instance based on serial port."
|
/external/chromium-trace/catapult/third_party/pyserial/ |
README.chromium | 11 Library for Python access for the serial port. Used for communication with 12 a Monsoon device, which tunnels serial over USB. 15 Includes only the serial/ folder and LICENSE.txt.
|
/external/skia/gn/ |
push_to_android.py | 12 host, serial, stamp = sys.argv[1:] 15 restrict = [] if serial == 'auto' else ['-s', serial]
|
/hardware/interfaces/radio/deprecated/1.0/ |
IOemHook.hal | 41 * @param serial Serial number of request. 46 oneway sendRequestRaw(int32_t serial, vec<uint8_t> data); 51 * @param serial Serial number of request. 56 oneway sendRequestStrings(int32_t serial, vec<string> data);
|
/external/syslinux/bios/com32/modules/ |
vpdtest.c32 | |
/external/syslinux/efi32/com32/modules/ |
vpdtest.c32 | |