Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 55) sorted by relevance

123

/subsys/net/lib/http/
A Dhttp_parser_url.c111 #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 Dhttp_parser.c273 #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 Dtty.c22 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 Dgetchar.c32 int console_putchar(char c) in console_putchar()
39 uint8_t c; in console_getchar() local
/subsys/testsuite/ztest/unittest/include/zephyr/arch/
A Dcpu.h19 uint8_t c; member
28 uint8_t c; member
/subsys/fs/
A Dlittlefs_fs.c174 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 Dshell_fprintf.c11 static int out_func(int c, void *ctx) in out_func()
A Dshell_utils.c100 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 Dmonitor.c154 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 Dmctp_uart.c82 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 Dlog_minimal.c44 unsigned char c = data[i]; in minimal_hexdump_line_print() local
A Dlog_output.c93 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 Dlog_output_syst.c38 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 Dtracing_backend_uart.c89 uint8_t c; in tracing_backend_uart_init() local
A Dtracing_format_common.c12 static int str_put(int c, void *ctx) in str_put()
/subsys/gnss/rtk/serial/
A Dserial.c69 char c; in rtk_uart_isr_callback() local
/subsys/sensing/
A Ddispatch.c77 static void dispatch_task(void *a, void *b, void *c) in dispatch_task()
/subsys/logging/backends/
A Dlog_backend_native_posix.c22 static void preprint_char(int c) in preprint_char()
A Dlog_backend_ws.c57 static int ws_console_out(struct log_backend_ws_ctx *ctx, int c) in ws_console_out()
/subsys/bluetooth/host/shell/
A Dl2cap.c94 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 Dcfb.c70 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 Dstats.c59 char c; in stats_gen_name() local
/subsys/mgmt/osdp/src/
A Dosdp_cp.c801 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 Dmodem_backend_uart_isr.c16 uint8_t c; in modem_backend_uart_isr_flush() local
/subsys/usb/host/
A Dusbip.c384 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()

Completed in 754 milliseconds

123