| /openbmc/u-boot/board/keymile/common/ |
| H A D | common.c | 259 char *rest = bidhwklist; in do_checkboardidhwk() local 273 while (*rest && !isxdigit(*rest)) in do_checkboardidhwk() 274 rest++; in do_checkboardidhwk() 279 bid = simple_strtoul(rest, &endp, 16); in do_checkboardidhwk() 282 rest = endp + 1; in do_checkboardidhwk() 287 hwkey = simple_strtoul(rest, &endp, 16); in do_checkboardidhwk() 288 rest = endp; in do_checkboardidhwk() 289 while (*rest && !isxdigit(*rest)) in do_checkboardidhwk() 290 rest++; in do_checkboardidhwk()
|
| /openbmc/u-boot/arch/arm/mach-aspeed/ast2600/ |
| H A D | scu_info.c | 218 u32 rest = readl(ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() local 221 if (rest & SYS_PWR_RESET_FLAG) { in aspeed_print_sysrst_info() 223 writel(rest, ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() 229 HANDLE_WDTx_RESET(4, rest, ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() 230 HANDLE_WDTx_RESET(3, rest, ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() 231 HANDLE_WDTx_RESET(2, rest, ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() 232 HANDLE_WDTx_RESET(1, rest, ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() 234 if (rest & SYS_CM3_EXT_RESET) { in aspeed_print_sysrst_info() 239 if (rest & (SYS_PCI1_RESET | SYS_PCI2_RESET)) { in aspeed_print_sysrst_info() 241 if (rest & SYS_PCI1_RESET) { in aspeed_print_sysrst_info() [all …]
|
| /openbmc/u-boot/arch/arm/mach-aspeed/ast2400/ |
| H A D | scu_info.c | 107 u32 rest = readl(ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() local 109 if (rest & SYS_WDT1_RESET) { in aspeed_print_sysrst_info() 113 if (rest & SYS_WDT2_RESET) { in aspeed_print_sysrst_info() 121 if (rest & SYS_WDT3_RESET) { in aspeed_print_sysrst_info() 125 if(rest & SYS_EXT_RESET) { in aspeed_print_sysrst_info() 129 if (rest & SYS_PWR_RESET_FLAG) { in aspeed_print_sysrst_info()
|
| /openbmc/u-boot/arch/arm/mach-aspeed/ast2500/ |
| H A D | scu_info.c | 136 u32 rest = readl(ASPEED_SYS_RESET_CTRL); in aspeed_print_sysrst_info() local 138 if (rest & SYS_WDT1_RESET) { in aspeed_print_sysrst_info() 142 if (rest & SYS_WDT2_RESET) { in aspeed_print_sysrst_info() 150 if (rest & SYS_WDT3_RESET) { in aspeed_print_sysrst_info() 154 if(rest & SYS_EXT_RESET) { in aspeed_print_sysrst_info() 158 if (rest & SYS_PWR_RESET_FLAG) { in aspeed_print_sysrst_info()
|
| /openbmc/bmcweb/redfish-core/include/ |
| H A D | filter_expr_parser_ast.hpp | 66 std::list<LogicalNot> rest; member 71 std::list<LogicalOr> rest; member 79 BOOST_FUSION_ADAPT_STRUCT(redfish::filter_ast::LogicalOr, first, rest); 80 BOOST_FUSION_ADAPT_STRUCT(redfish::filter_ast::LogicalAnd, first, rest);
|
| /openbmc/bmcweb/redfish-core/src/ |
| H A D | filter_expr_printer.cpp | 66 if (!x.rest.empty()) in operator ()() 73 for (const filter_ast::LogicalNot& oper : x.rest) in operator ()() 85 if (!x.rest.empty()) in operator ()() 92 for (const filter_ast::LogicalOr& oper : x.rest) in operator ()() 150 std::string_view rest(iter, end); in parseFilter() local 152 BMCWEB_LOG_ERROR("Parsing failed stopped at \"{}\"", rest); in parseFilter()
|
| /openbmc/rest-dbus/ |
| H A D | README.md | 1 # rest-dbus 3 rest-dbus was a [dfeet](https://wiki.gnome.org/Apps/DFeet)-like UI over HTTP 7 APIs as rest-dbus, but browser side support remains unimplemented.
|
| /openbmc/qemu/ui/ |
| H A D | keymaps.c | 138 const char *rest = line + offset + 1; in parse_keyboard_layout() local 139 int keycode = strtol(rest, NULL, 0); in parse_keyboard_layout() 141 if (strstr(rest, "shift")) { in parse_keyboard_layout() 144 if (strstr(rest, "altgr")) { in parse_keyboard_layout() 147 if (strstr(rest, "ctrl")) { in parse_keyboard_layout() 153 if (strstr(rest, "addupper")) { in parse_keyboard_layout()
|
| /openbmc/openbmc/poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/ |
| H A D | nfsroot | 13 while read dev mtpt fstype rest; do 18 nfs_addr=`echo $rest | sed -e 's/^.*addr=\([0-9.]*\).*$/\1/'`
|
| /openbmc/openbmc/meta-yadro/meta-nicole/recipes-bsp/u-boot/files/ |
| H A D | 0001-Add-system-reset-status-support.patch | 187 u32 rest = ast_scu_read(AST_SCU_SYS_CTRL); 189 if (rest & SCU_SYS_EXT_RESET_FLAG) { 192 + rest = SCU_SYS_EXT_RESET_FLAG; 193 } else if (rest & SCU_SYS_WDT_RESET_FLAG) { 196 + rest = SCU_SYS_WDT_RESET_FLAG; 197 } else if (rest & SCU_SYS_PWR_RESET_FLAG) { 200 + rest = SCU_SYS_PWR_RESET_FLAG; 204 + return rest;
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/bubblewrap/bubblewrap/ |
| H A D | 0001-Use-stdbool.h-for-booleans.patch | 43 rest = line + consumed; 45 - rest = skip_token (rest, TRUE); /* mountroot */ 46 + rest = skip_token (rest, true); /* mountroot */ 47 mountpoint = rest; 48 - rest = skip_token (rest, FALSE); /* mountpoint */ 49 + rest = skip_token (rest, false); /* mountpoint */ 50 mountpoint_end = rest++; 51 options = rest; 52 - rest = skip_token (rest, FALSE); /* vfs options */ 53 + rest = skip_token (rest, false); /* vfs options */ [all …]
|
| /openbmc/u-boot/tools/binman/ |
| H A D | elf.py | 52 value, rest = line[:space_pos], line[space_pos + 1:] 53 flags = rest[:7] 54 parts = rest[7:].split()
|
| /openbmc/sdbusplus/tools/sdbusplus/ |
| H A D | property.py | 291 rest = typeTuple[1] 294 if (entry["params"] != -1) and (entry["params"] != len(rest)): 296 "Invalid entry count for %s : %s" % (first, rest) 301 result = rest[0][0] 324 result += ", ".join([self.__parse_cpp_type__(e) for e in rest])
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gperftools/gperftools/ |
| H A D | ppc-musl.patch | 35 // We don't care about the rest, since the IP value is at 'uc' field. 44 // We don't care about the rest, since IP value is at 'mctx' field. 53 // We don't care about the rest, since IP value is at 'uc' field.A
|
| /openbmc/openbmc/poky/meta/recipes-devtools/python/python3/ |
| H A D | 0001-test_storlines-skip-due-to-load-variability.patch | 23 self.client.storbinary('stor', f, rest=r) 24 self.assertEqual(self.server.handler_instance.rest, str(r))
|
| /openbmc/qemu/linux-user/ |
| H A D | linuxload.c | 253 size_t rest = src->cache_size - offset; in imgsrc_mmap() local 254 memcpy(haddr, src->cache + offset, rest); in imgsrc_mmap() 255 memset(haddr + rest, 0, len - rest); in imgsrc_mmap()
|
| /openbmc/openbmc/meta-bytedance/recipes-phosphor/interfaces/ |
| H A D | bmcweb_%.bbappend | 5 PACKAGECONFIG:append = "dbus-rest"
|
| /openbmc/openbmc/meta-phosphor/recipes-phosphor/initrdscripts/files/ |
| H A D | obmc-init.sh | 99 rest="${1#tftp://}" 100 path=${rest#*/} 101 host=${rest%"$path"} 258 rest="${url#*://}" 259 proto="${url%"$rest"}"
|
| /openbmc/openbmc/meta-hpe/meta-common/recipes-phosphor/initrdscripts/files/ |
| H A D | gxp-obmc-init.sh | 101 rest="${1#tftp://}" 102 path=${rest#*/} 103 host=${rest%"$path"} 262 rest="${url#*://}" 263 proto="${url%"$rest"}"
|
| /openbmc/u-boot/arch/arm/mach-s5pc1xx/include/mach/ |
| H A D | uart.h | 32 union br_rest rest; member
|
| /openbmc/u-boot/arch/arm/mach-exynos/include/mach/ |
| H A D | uart.h | 32 union br_rest rest; member
|
| /openbmc/u-boot/tools/ |
| H A D | genboardscfg.py | 337 tag, rest = line[:2], line[2:].strip() 339 maintainers.append(rest) 342 for f in glob.glob(rest): 349 status = rest
|
| /openbmc/u-boot/fs/reiserfs/ |
| H A D | reiserfs.c | 683 char *rest, ch; in reiserfs_dir() local 817 for (rest = dirname; (ch = *rest) && ! isspace (ch) && ch != '/'; rest++); in reiserfs_dir() 818 *rest = 0; in reiserfs_dir() 907 *rest = ch; in reiserfs_dir() 911 *rest = ch; in reiserfs_dir() 912 dirname = rest; in reiserfs_dir()
|
| /openbmc/docs/ |
| H A D | README.md | 46 - [rest-api.md](rest-api.md): Introduction to using the OpenBMC REST API
|
| H A D | Makefile | 17 userguide/userguide.tex: rest-api.tex host-management.tex console.tex architecture/code-update/code…
|