Searched refs:string (Results 1 – 14 of 14) sorted by relevance
/lk-master/external/lib/fdt/include/ |
A D | libfdt_env.h | 85 static inline size_t fdt_strnlen(const char *string, size_t max_count) in fdt_strnlen() argument 87 const char *p = memchr(string, 0, max_count); in fdt_strnlen() 88 return p ? p - string : max_count; in fdt_strnlen()
|
A D | libfdt.h | 1110 const char *string);
|
/lk-master/lib/console/include/lib/ |
A D | console.h | 34 int console_run_script(console_t *con, const char *string); 35 int console_run_script_locked(console_t *con, const char *string); // special case from inside a co…
|
/lk-master/dev/usb/ |
A D | usb.c | 130 status_t usb_add_string(const char *string, uint8_t id) { in usb_add_string() argument 132 size_t len = strlen(string); in usb_add_string() 142 strbuf[i + 1] = (uint16_t)string[i]; in usb_add_string() 148 usb.strings[i].string.desc = strbuf; in usb_add_string() 149 usb.strings[i].string.len = len * 2 + 2; in usb_add_string() 260 usbc_ep0_send(usb.strings[i].string.desc, in usbc_callback() 261 usb.strings[i].string.len, in usbc_callback()
|
/lk-master/lib/console/ |
A D | console.c | 717 const char *string; member 727 if (lineread->string[lineread->pos] == 0) in fetch_next_line() 731 while (lineread->string[lineread->pos] != 0) { in fetch_next_line() 732 if (lineread->string[lineread->pos] == '\n') { in fetch_next_line() 738 lineread->buffer[bufpos] = lineread->string[lineread->pos]; in fetch_next_line() 749 static int console_run_script_etc(console_t *con, const char *string, bool locked) { in console_run_script_etc() argument 752 lineread.string = string; in console_run_script_etc() 764 int console_run_script(console_t *con, const char *string) { in console_run_script() argument 768 return console_run_script_etc(con, string, false); in console_run_script() 771 int console_run_script_locked(console_t *con, const char *string) { in console_run_script_locked() argument [all …]
|
/lk-master/lib/text/ |
A D | text.c | 46 void text_draw(int x, int y, const char *string) { in text_draw() argument 49 line->str = strdup(string); in text_draw()
|
/lk-master/dev/include/dev/ |
A D | usb.h | 45 usb_descriptor string; member 73 status_t usb_add_string(const char *string, uint8_t id);
|
/lk-master/external/platform/pico/boards/ |
A D | generic_board.cmake | 19 …string(CONCAT msg ${msg} " Looked for ${PICO_BOARD}.h in ${DIRS} (additional paths specified by … 21 …string(CONCAT msg ${msg} " Looked for ${PICO_BOARD}.cmake in ${DIRS} (additional paths specified…
|
/lk-master/lib/text/include/lib/ |
A D | text.h | 14 void text_draw(int x, int y, const char *string);
|
/lk-master/lib/libc/ |
A D | rules.mk | 26 include $(LOCAL_DIR)/string/rules.mk
|
/lk-master/platform/pc/include/platform/ |
A D | multiboot.h | 90 uint32_t string; member
|
/lk-master/external/lib/fdt/ |
A D | fdt_ro.c | 747 const char *string) in fdt_stringlist_search() argument 756 len = strlen(string) + 1; in fdt_stringlist_search() 766 if (length == len && memcmp(list, string, length) == 0) in fdt_stringlist_search()
|
/lk-master/external/platform/lpc15xx/lpcopen/periph_eeprom/example/ |
A D | readme.dox | 36 * string from and to the EEPROM.<br>
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 119 # used to form the text in various listings. Each string in this list, if found 321 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 324 # definitions whose arguments contain STL classes (e.g. func(std::string); 325 # versus func(std::string) {}). This also make the inheritance and collaboration 614 # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 766 # can produce. The string should contain the $file, $line, and $text tags, which 1276 # This tag specifies a string that should uniquely identify the documentation 1277 # set bundle. This should be a reverse domain-name style string, e.g. 1284 # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 1286 # string, e.g. com.mycompany.MyDocSet.documentation. [all …]
|
Completed in 27 milliseconds