Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:serial_config
(Results
1 - 3
of
3
) sorted by relevance
/third_party/jerryscript/jerry-ext/debugger/
H
A
D
debugger-serial.c
106
jerryx_debugger_serial_configure_attributes (int fd, jerryx_debugger_transport_serial_config_t
serial_config
)
in jerryx_debugger_serial_configure_attributes()
argument
119
cfsetispeed (&options,
serial_config
.baud_rate);
in jerryx_debugger_serial_configure_attributes()
120
cfsetospeed (&options,
serial_config
.baud_rate);
in jerryx_debugger_serial_configure_attributes()
126
switch (
serial_config
.data_bits)
in jerryx_debugger_serial_configure_attributes()
150
JERRYX_ERROR_MSG ("Unsupported data bits: %d\n",
serial_config
.data_bits);
in jerryx_debugger_serial_configure_attributes()
155
switch (
serial_config
.parity)
in jerryx_debugger_serial_configure_attributes()
176
JERRYX_ERROR_MSG ("Unsupported parity: %c\n",
serial_config
.parity);
in jerryx_debugger_serial_configure_attributes()
181
switch (
serial_config
.stop_bits)
in jerryx_debugger_serial_configure_attributes()
195
JERRYX_ERROR_MSG ("Unsupported stop bits: %d\n",
serial_config
.stop_bits);
in jerryx_debugger_serial_configure_attributes()
335
jerryx_debugger_transport_serial_config_t
serial_config
;
in jerryx_debugger_serial_create()
local
[all...]
/third_party/jerryscript/jerry-debugger/
H
A
D
jerry_client_serial.py
22
def __init__(self,
serial_config
):
23
config =
serial_config
.split(',')
H
A
D
jerry_client.py
281
protocol = Serial(args.
serial_config
)
Completed in 2 milliseconds