/subsys/net/lib/http/ |
A D | http_parser_url.c | 111 #define LOWER(c) (unsigned char)(c | 0x20) argument 112 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z') argument 113 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') argument 114 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c)) argument 115 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f')) argument 117 #define IS_MARK(c) ((c) == '-' || (c) == '_' || (c) == '.' || \ argument 121 #define IS_USERINFO_CHAR(c) (IS_ALPHANUM(c) || IS_MARK(c) || (c) == '%' || \ argument 127 #define IS_URL_CHAR(c) (BIT_AT(normal_url_char, (unsigned char)c)) argument 128 #define IS_HOST_CHAR(c) (IS_ALPHANUM(c) || (c) == '.' || (c) == '-') argument 130 #define IS_URL_CHAR(c) \ argument [all …]
|
A D | http_parser.c | 273 #define LOWER(c) (unsigned char)(c | 0x20) argument 274 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z') argument 275 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') argument 276 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c)) argument 279 #define IS_MARK(c) ((c) == '-' || (c) == '_' || (c) == '.' || \ argument 288 #define STRICT_TOKEN(c) (tokens[(unsigned char)c]) argument 291 #define TOKEN(c) (tokens[(unsigned char)c]) argument 312 int strict_check(struct http_parser *parser, int c) in strict_check() 324 int strict_check(struct http_parser *parser, int c) in strict_check() 527 enum header_states *header_state, char ch, char c) in header_states() [all …]
|
/subsys/console/ |
A D | tty.c | 22 uint8_t c; in tty_uart_isr() local 48 static int tty_irq_input_hook(struct tty_serial *tty, uint8_t c) in tty_irq_input_hook() 69 static int tty_putchar(struct tty_serial *tty, uint8_t c) in tty_putchar() 144 uint8_t c; in tty_getchar() local 170 uint8_t c; in tty_read_unbuf() local
|
A D | getchar.c | 32 int console_putchar(char c) in console_putchar() 39 uint8_t c; in console_getchar() local
|
/subsys/testsuite/ztest/unittest/include/zephyr/arch/ |
A D | cpu.h | 19 uint8_t c; member 28 uint8_t c; member
|
/subsys/fs/ |
A D | littlefs_fs.c | 174 static int lfs_api_read(const struct lfs_config *c, lfs_block_t block, in lfs_api_read() 185 static int lfs_api_prog(const struct lfs_config *c, lfs_block_t block, in lfs_api_prog() 196 static int lfs_api_erase(const struct lfs_config *c, lfs_block_t block) in lfs_api_erase() 208 static int lfs_api_read_blk(const struct lfs_config *c, lfs_block_t block, in lfs_api_read_blk() 218 static int lfs_api_prog_blk(const struct lfs_config *c, lfs_block_t block, in lfs_api_prog_blk() 227 static int lfs_api_sync_blk(const struct lfs_config *c) in lfs_api_sync_blk() 235 static int lfs_api_read_blk(const struct lfs_config *c, lfs_block_t block, in lfs_api_read_blk() 241 static int lfs_api_prog_blk(const struct lfs_config *c, lfs_block_t block, in lfs_api_prog_blk() 247 static int lfs_api_sync_blk(const struct lfs_config *c) in lfs_api_sync_blk() 252 static int lfs_api_erase_blk(const struct lfs_config *c, lfs_block_t block) in lfs_api_erase_blk() [all …]
|
/subsys/shell/ |
A D | shell_fprintf.c | 11 static int out_func(int c, void *ctx) in out_func()
|
A D | shell_utils.c | 100 static char make_argv(char **ppcmd, uint8_t c) in make_argv() 213 char c; in z_shell_make_argv() local
|
/subsys/bluetooth/host/ |
A D | monitor.c | 154 static void poll_out(char c) in poll_out() 170 static void poll_out(char c) in poll_out() 268 static int monitor_console_out(int c) in monitor_console_out()
|
/subsys/pmci/mctp/ |
A D | mctp_uart.c | 82 uint8_t c = p[i]; in mctp_uart_pkt_escape() local 105 static void mctp_uart_consume(struct mctp_binding_uart *uart, uint8_t c) in mctp_uart_consume()
|
/subsys/logging/ |
A D | log_minimal.c | 44 unsigned char c = data[i]; in minimal_hexdump_line_print() local
|
A D | log_output.c | 93 static int out_func(int c, void *ctx) in out_func() 119 static int cr_out_func(int c, void *ctx) in cr_out_func() 384 unsigned char c = (unsigned char)data[i]; in hexdump_line_print() local
|
A D | log_output_syst.c | 38 static int out_func(int c, void *ctx) in out_func() 252 uint8_t c; local 585 unsigned char c = (unsigned char)data[i]; local
|
/subsys/tracing/ |
A D | tracing_backend_uart.c | 89 uint8_t c; in tracing_backend_uart_init() local
|
A D | tracing_format_common.c | 12 static int str_put(int c, void *ctx) in str_put()
|
/subsys/gnss/rtk/serial/ |
A D | serial.c | 69 char c; in rtk_uart_isr_callback() local
|
/subsys/sensing/ |
A D | dispatch.c | 77 static void dispatch_task(void *a, void *b, void *c) in dispatch_task()
|
/subsys/logging/backends/ |
A D | log_backend_native_posix.c | 22 static void preprint_char(int c) in preprint_char()
|
A D | log_backend_ws.c | 57 static int ws_console_out(struct log_backend_ws_ctx *ctx, int c) in ws_console_out()
|
/subsys/bluetooth/host/shell/ |
A D | l2cap.c | 94 struct l2ch *c = L2CH_WORK(work); in l2cap_recv_cb() local 146 struct l2ch *c = L2CH_CHAN(chan); in l2cap_connected() local
|
/subsys/fb/ |
A D | cfb.c | 70 static inline uint8_t *get_glyph_ptr(const struct cfb_font *fptr, uint8_t c) in get_glyph_ptr() 99 uint8_t c, uint16_t x, uint16_t y, in draw_char_vtmono() 222 uint8_t c, uint16_t x, uint16_t y, in draw_char_htmono()
|
/subsys/stats/ |
A D | stats.c | 59 char c; in stats_gen_name() local
|
/subsys/mgmt/osdp/src/ |
A D | osdp_cp.c | 801 struct osdp_cmd *c; in cp_cmd_dispatcher() local 1039 struct osdp_cmd *c = (struct osdp_cmd *)pd->ephemeral_data; in cp_keyset_complete() local
|
/subsys/modem/backends/ |
A D | modem_backend_uart_isr.c | 16 uint8_t c; in modem_backend_uart_isr_flush() local
|
/subsys/usb/host/ |
A D | usbip.c | 384 static void usbip_thread_cmd(void *const a, void *const b, void *const c) in usbip_thread_cmd() 639 static void usbip_thread_handler(void *const a, void *const b, void *const c) in usbip_thread_handler()
|