| /openbmc/libcper/include/libcper/generator/sections/ |
| H A D | gen-section.h | 15 size_t generate_section_generic(void **location, 17 size_t generate_section_ia32x64(void **location, 19 size_t generate_section_arm(void **location, 21 size_t generate_section_memory(void **location, 23 size_t generate_section_memory2(void **location, 25 size_t generate_section_pcie(void **location, 27 size_t generate_section_pci_bus(void **location, 29 size_t generate_section_pci_dev(void **location, 31 size_t generate_section_firmware(void **location, 33 size_t generate_section_dmar_generic(void **location, [all …]
|
| /openbmc/u-boot/common/ |
| H A D | splash_source.c | 63 static int splash_storage_read_raw(struct splash_location *location, in splash_storage_read_raw() argument 68 if (!location) in splash_storage_read_raw() 71 offset = location->offset; in splash_storage_read_raw() 72 switch (location->storage) { in splash_storage_read_raw() 84 static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr) in splash_load_raw() argument 93 res = splash_storage_read_raw(location, bmp_load_addr, bmp_header_size); in splash_load_raw() 103 return splash_storage_read_raw(location, bmp_load_addr, bmp_size); in splash_load_raw() 111 static int splash_select_fs_dev(struct splash_location *location) in splash_select_fs_dev() argument 115 switch (location->storage) { in splash_select_fs_dev() 117 res = fs_set_blk_dev("mmc", location->devpart, FS_TYPE_ANY); in splash_select_fs_dev() [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-pykickstart/files/ |
| H A D | 0004-load.py-retry-to-invoke-request-with-timeout.patch | 39 is_url = lambda location: '://' in location # RFC 3986 42 @@ -71,6 +75,29 @@ def load_to_file(location, destination): 43 _copy_file(location, destination) 46 +def _access_url(location): 54 + request = requests.get(location, verify=SSL_VERIFY, timeout=2) 56 + log.info("Try '%s' %d times, %s" % (location, i, str(e))) 69 def _get_auth(location, user=None, passwd=None): 72 @@ -93,6 +120,9 @@ def _get_auth(location, user=None, passwd=None): 73 def _load_url(location, user=None, passwd=None): 74 '''Load a location (URL or filename) and return contents as string''' [all …]
|
| H A D | 0001-support-authentication-for-kickstart.patch | 73 @@ -28,7 +30,7 @@ is_url = lambda location: '://' in location # RFC 3986 77 -def load_to_str(location): 78 +def load_to_str(location, user=None, passwd=None): 82 @@ -39,7 +41,7 @@ def load_to_str(location): 85 if is_url(location): 86 - return _load_url(location) 87 + return _load_url(location, user=user, passwd=passwd) 89 return _load_file(location) 91 @@ -69,11 +71,32 @@ def load_to_file(location, destination): 92 _copy_file(location, destination) [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/initrdscripts/initramfs-framework/ |
| H A D | nfsrootfs | 12 local location 21 location="${bootparam_nfsroot%%,*}" 22 if [ "${location#*:}" = "${location}" ]; then 32 location=${server_ip}:${location} 46 mount -t nfs ${flags} ${nfs_opts} ${location} ${ROOTFS_DIR}
|
| /openbmc/libcper/generator/sections/ |
| H A D | gen-section-dmar.c | 14 size_t generate_section_dmar_generic(void **location, in generate_section_dmar_generic() argument 34 *location = bytes; in generate_section_dmar_generic() 40 size_t generate_section_dmar_vtd(void **location, in generate_section_dmar_vtd() argument 60 *location = bytes; in generate_section_dmar_vtd() 66 size_t generate_section_dmar_iommu(void **location, in generate_section_dmar_iommu() argument 85 *location = bytes; in generate_section_dmar_iommu()
|
| H A D | gen-section-generic.c | 14 size_t generate_section_generic(void **location, in generate_section_generic() argument 18 size_t size = generate_random_section(location, 192); in generate_section_generic() 21 UINT8 *start_byte = (UINT8 *)*location; in generate_section_generic() 22 UINT64 *validation = (UINT64 *)*location; in generate_section_generic()
|
| H A D | gen-section-memory.c | 14 size_t generate_section_memory(void **location, in generate_section_memory() argument 39 *location = bytes; in generate_section_memory() 45 size_t generate_section_memory2(void **location, in generate_section_memory2() argument 71 *location = bytes; in generate_section_memory2()
|
| /openbmc/webui-vue/src/store/modules/SecurityAndAccess/ |
| H A D | CertificatesStore.js | 39 location: `${await this.dispatch( property in CertificatesStore.actions.getCertificateTypes.AnonymousClass3283684f0201 46 location: '/redfish/v1/AccountService/LDAP/Certificates/', property in CertificatesStore.actions.getCertificateTypes.AnonymousClass3283684f0301 51 location: `${await this.dispatch( property in CertificatesStore.actions.getCertificateTypes.AnonymousClass3283684f0401 74 const promises = certificateLocations.map((location) => 75 api.get(location), 89 location: data['@odata.id'], 142 { certificateString, location, type }, 147 data.CertificateUri = { '@odata.id': location }; 171 async deleteCertificate({ dispatch, getters }, { type, location }) { 173 .delete(location)
|
| /openbmc/qemu/rust/qemu-api/src/ |
| H A D | error.rs | 92 let location = panic::Location::caller(); in from() localVariable 96 file: location.file(), in from() 97 line: location.line(), in from() 105 let location = panic::Location::caller(); in from() localVariable 109 file: location.file(), in from() 110 line: location.line(), in from() 118 let location = panic::Location::caller(); in from() localVariable 122 file: location.file(), in from() 123 line: location.line(), in from() 133 let location = panic::Location::caller(); in with_error() localVariable [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
| H A D | 0026-fix-incorrect-preprocessor-line-numbers.patch | 74 /* The location of the end of the just-closed map. */ 121 FAIL: gcc.dg/plugin/location-overflow-test-pr116047.c -fplugin=./location_overflow_plugin.so scan-… 123 FAIL: gcc.dg/plugin/location-overflow-test-pr116047.c -fplugin=./location_overflow_plugin.so scan-… 124 FAIL: gcc.dg/plugin/location-overflow-test-pr120061.c -fplugin=./location_overflow_plugin.so scan-… 130 boundaries, so that the location is not on the line after the #include 155 and map[-1].included_from is the correct location of column 0 on 239 * gcc.dg/plugin/plugin.exp: Add location-overflow-test-pr116047.c 240 and location-overflow-test-pr120061.c. 244 * gcc.dg/plugin/location-overflow-test-pr116047.c: New test. 245 * gcc.dg/plugin/location-overflow-test-pr116047-1.h: New test. [all …]
|
| /openbmc/u-boot/env/ |
| H A D | env.c | 41 if (loc == entry->location) in _env_driver_lookup() 88 static bool env_has_inited(enum env_location location) in env_has_inited() argument 90 return gd->env_has_init & BIT(location); in env_has_inited() 93 static void env_set_inited(enum env_location location) in env_set_inited() argument 102 gd->env_has_init |= BIT(location); in env_set_inited() 189 if (!env_has_inited(drv->location)) in env_load() 240 if (!env_has_inited(drv->location)) in env_save() 265 env_set_inited(drv->location); in env_init()
|
| /openbmc/phosphor-pid-control/failsafeloggers/ |
| H A D | failsafe_logger_utility.hpp | 28 const std::string& location, const std::string& reason) in outputFailsafeLogWithSensor() argument 35 zoneId, newFailsafeState, location, reason); in outputFailsafeLogWithSensor() 45 const std::string& location, const std::string& reason) in outputFailsafeLogWithZone() argument 50 zoneId, newFailsafeState, location, reason); in outputFailsafeLogWithZone()
|
| H A D | failsafe_logger.cpp | 13 const std::string& location, const std::string& reason) in outputFailsafeLog() argument 37 std::string locationReason = location + " @ " + reason; in outputFailsafeLog() 50 << "` is in failsafe mode.\t\tWith update at `" << location in outputFailsafeLog() 56 << "` leaves failsafe mode.\t\tWith update at `" << location in outputFailsafeLog()
|
| /openbmc/openbmc/poky/meta/recipes-support/apr/apr/ |
| H A D | 0002-apr-Remove-workdir-path-references-from-installed-ap.patch | 29 - if test "$location" = "installed"; then 31 - elif test "$location" = "crosscompile"; then 33 - elif test "$location" = "source"; then 46 - if test "$location" = "installed"; then 47 - ### avoid using -L if libdir is a "standard" location like /usr/lib 49 - elif test "$location" = "crosscompile"; then 64 - elif test "$location" = "installed"; then 65 - ### avoid using -L if libdir is a "standard" location like /usr/lib 69 - elif test "$location" = "crosscompile"; then
|
| /openbmc/openbmc/meta-phosphor/recipes-core/dropbear/ |
| H A D | dropbear_%.bbappend | 9 file://dropbear-migrate-key-location.service \ 10 file://migrate-key-location \ 24 install -m 0644 ${UNPACKDIR}/dropbear-migrate-key-location.service \ 28 install -m 0755 ${UNPACKDIR}/migrate-key-location ${D}${libexecdir}/${BPN} 30 SYSTEMD_SERVICE:${PN}:append = " dropbear-migrate-key-location.service"
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | ffdc_cli_robot_script.py | 136 location = None 160 location = dict_of_parm[key] 174 if not location: 176 location = ( 180 ffdc_collector.validate_local_store(location) 210 location, 240 location,
|
| /openbmc/u-boot/fs/btrfs/ |
| H A D | inode.c | 48 struct btrfs_key *location, in btrfs_lookup_inode() argument 56 if (location->type == BTRFS_ROOT_ITEM_KEY) { in btrfs_lookup_inode() 57 if (btrfs_find_root(location->objectid, &tmp_root, NULL)) in btrfs_lookup_inode() 60 location->objectid = tmp_root.root_dirid; in btrfs_lookup_inode() 61 location->type = BTRFS_INODE_ITEM_KEY; in btrfs_lookup_inode() 62 location->offset = 0; in btrfs_lookup_inode() 65 if (btrfs_search_tree(&tmp_root, location, &path)) in btrfs_lookup_inode() 68 if (btrfs_comp_keys(location, btrfs_path_leaf_key(&path))) in btrfs_lookup_inode() 258 if (btrfs_lookup_inode(root, &item.location, &inode_item, root)) in btrfs_lookup_path() 274 if (btrfs_readlink(root, item.location.objectid, in btrfs_lookup_path() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-support/apr/apr-util/ |
| H A D | configfix.patch | 11 - if test "$location" = "installed"; then 13 - elif test "$location" = "source"; then 26 - if test "$location" = "installed"; then 27 - ### avoid using -L if libdir is a "standard" location like /usr/lib 40 - elif test "$location" = "installed"; then 41 - ### avoid using -L if libdir is a "standard" location like /usr/lib
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 207.out | 3 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"path": "TEST_… 21 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 32 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 43 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 49 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 60 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 66 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 77 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 83 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… 94 …-create", "arguments": {"job-id": "job0", "options": {"driver": "ssh", "location": {"host-key-chec… [all …]
|
| /openbmc/u-boot/board/Arcturus/ucp1020/ |
| H A D | cmd_arc.c | 98 int location = 1; in get_arc_info() local 105 location++; in get_arc_info() 107 location++; in get_arc_info() 110 location++; in get_arc_info() 120 if (location > 1) in get_arc_info() 121 printf("Using region %d\n", location); in get_arc_info()
|
| /openbmc/openbmc/meta-facebook/meta-santabarbara/recipes-santabarbara/plat-svc/ |
| H A D | plat-svc_0.1.bb | 16 file://santabarbara-tray-location-init \ 17 file://santabarbara-tray-location-init.service \ 24 santabarbara-tray-location-init.service \ 32 install -m 0755 ${UNPACKDIR}/santabarbara-tray-location-init ${D}${libexecdir}/plat-svc
|
| /openbmc/openbmc/poky/bitbake/doc/sphinx-static/ |
| H A D | switchers.js | 109 window.location.href = url; 114 window.location.href = url; 120 window.location.href = url; 129 var url = window.location.href; 145 var url = window.location.href; 177 var url = window.location.href; 208 var current_doctype = doctype_segment_from_url(window.location.href);
|
| /openbmc/openbmc/meta-yadro/recipes-phosphor/ipmi/phosphor-ipmi-host/ |
| H A D | 0003-Fix-version-parsing-update-AUX-revision-info.patch | 180 auto location = s.find_first_of('v'); 181 if (location != std::string::npos) 187 - location = s.find_first_of("."); 188 - if (location != std::string::npos) 194 - static_cast<char>(std::stoi(s.substr(0, location), 0, 10)); 195 - token = s.substr(location + 1); 204 - location = token.find_first_of(".-"); 205 - if (location != std::string::npos) 221 - std::stoi(token.substr(0, location), 0, 10)); 222 - token = token.substr(location + 1); [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/systemd/systemd-systemctl/ |
| H A D | systemctl | 32 for location in locations: 33 for path2 in sorted((root / location / "system" / dirname).glob("*.conf")): 124 for location in locations: 125 paths = (root / location / scope).glob("*.preset") 175 for location in locations: 176 path = self.root / location / "system" / unit 182 def _process_deps(self, config, service, location, prop, dirstem): argument 185 target = ROOT / location.relative_to(self.root) 256 for location in locations: 257 paths = (root / location / "system").glob("*")
|