| /openbmc/u-boot/drivers/mtd/onenand/ |
| H A D | onenand_base.c | 152 static int onenand_block_address(struct onenand_chip *this, int block) in onenand_block_address() argument 155 if (block & this->density_mask) in onenand_block_address() 156 return ONENAND_DDP_CHIP1 | (block ^ this->density_mask); in onenand_block_address() 169 static int onenand_bufferram_address(struct onenand_chip *this, int block) in onenand_bufferram_address() argument 172 if (block & this->density_mask) in onenand_bufferram_address() 229 static unsigned int flexonenand_block(struct onenand_chip *this, loff_t addr) in flexonenand_block() argument 233 if (ONENAND_IS_DDP(this) && addr >= this->diesize[0]) { in flexonenand_block() 235 addr -= this->diesize[0]; in flexonenand_block() 238 boundary = this->boundary[die]; in flexonenand_block() 240 blk = addr >> (this->erase_shift - 1); in flexonenand_block() [all …]
|
| H A D | samsung.c | 118 struct onenand_chip *this = onenand->mtd->priv; in s3c_onenand_readw() local 119 int reg = addr - this->base; in s3c_onenand_readw() 167 struct onenand_chip *this = onenand->mtd->priv; in s3c_onenand_writew() local 168 int reg = addr - this->base; in s3c_onenand_writew() 273 struct onenand_chip *this = mtd->priv; in s3c_onenand_command() local 280 fba = (int) (addr >> this->erase_shift); in s3c_onenand_command() 281 fpa = (int) (addr >> this->page_shift); in s3c_onenand_command() 282 fpa &= this->page_mask; in s3c_onenand_command() 290 ONENAND_SET_NEXT_BUFFERRAM(this); in s3c_onenand_command() 295 index = ONENAND_CURRENT_BUFFERRAM(this); in s3c_onenand_command() [all …]
|
| /openbmc/webui-vue/src/components/Global/ |
| H A D | LoadingBar.vue | 27 this.$eventBus.on('loader-start', () => { 28 this.startLoadingInterval(); 30 this.$eventBus.on('loader-end', () => { 31 this.endLoadingInterval(); 33 this.$eventBus.on('loader-hide', () => { 34 this.hideLoadingBar(); 38 this.$eventBus.off('loader-start', this.handleLoaderStart); 39 this.$eventBus.off('loader-end', this.handleLoaderEnd); 40 this.$eventBus.off('loader-hide', this.handleLoaderHide); 44 this.clearLoadingInterval(); [all …]
|
| /openbmc/webui-vue/src/views/Overview/ |
| H A D | Overview.vue | 88 this.startLoader(); 91 this.dumpsResolver = resolve; 92 this.$eventBus.on('overview-dumps-complete', () => resolve()); 96 this.eventsResolver = resolve; 97 this.$eventBus.on('overview-events-complete', () => resolve()); 101 this.firmwareResolver = resolve; 102 this.$eventBus.on('overview-firmware-complete', () => resolve()); 106 this.inventoryResolver = resolve; 107 this.$eventBus.on('overview-inventory-complete', () => resolve()); 111 this.networkResolver = resolve; [all …]
|
| /openbmc/u-boot/include/linux/mtd/ |
| H A D | onenand.h | 131 #define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index) argument 132 #define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1) argument 133 #define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1) argument 134 #define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1) argument 135 #define ONENAND_SET_BUFFERRAM0(this) (this->bufferram_index = 0) argument 136 #define ONENAND_SET_BUFFERRAM1(this) (this->bufferram_index = 1) argument 138 #define FLEXONENAND(this) (this->device_id & DEVICE_IS_FLEXONENAND) argument 139 #define ONENAND_IS_MLC(this) (this->technology & ONENAND_TECHNOLOGY_IS_MLC) argument 140 #define ONENAND_IS_DDP(this) \ argument 141 (this->device_id & ONENAND_DEVICE_IS_DDP) [all …]
|
| /openbmc/webui-vue/src/views/Settings/Network/ |
| H A D | Network.vue | 99 this.hideLoader(); 123 this.getModalInfo(); 126 this.$store.dispatch('network/setSelectedTabIndex', newIndex); 127 this.$store.dispatch( 129 this.ethernetData?.[newIndex]?.Id, 131 this.getModalInfo(); 135 this.startLoader(); 155 this.$store.dispatch('network/getEthernetData'), 165 const count = this.ethernetData?.length || 0; 168 this.tabIndex = 0; [all …]
|
| H A D | NetworkInterfaceSettings.vue | 102 this.getSettings(); 106 this.getSettings(); 107 this.$store.dispatch('network/getEthernetData').finally(() => { 116 this.selectedInterface = this.tabIndex; 117 this.linkStatus = this.ethernetData[this.selectedInterface].LinkStatus; 118 this.linkSpeed = this.ethernetData[this.selectedInterface].SpeedMbps; 119 this.fqdn = this.ethernetData[this.selectedInterface].FQDN; 120 this.macAddress = this.ethernetData[this.selectedInterface].MACAddress; 123 this.showMacAddressModal = true;
|
| /openbmc/u-boot/drivers/mtd/nand/raw/ |
| H A D | nand_bbt.c | 173 struct nand_chip *this = mtd_to_nand(mtd); in read_bbt() local 183 from = ((loff_t)page) << this->page_shift; in read_bbt() 186 len = min(totlen, (size_t)(1 << this->bbt_erase_shift)); in read_bbt() 222 this->bbt_erase_shift); in read_bbt() 223 bbt_mark_entry(this, offs + act, in read_bbt() 234 this->bbt_erase_shift); in read_bbt() 237 bbt_mark_entry(this, offs + act, in read_bbt() 240 bbt_mark_entry(this, offs + act, in read_bbt() 264 struct nand_chip *this = mtd_to_nand(mtd); in read_abs_bbt() local 269 for (i = 0; i < this->numchips; i++) { in read_abs_bbt() [all …]
|
| H A D | nand_spl_simple.c | 28 struct nand_chip *this = mtd_to_nand(mtd); in nand_command() local 31 while (!this->dev_ready(mtd)) in nand_command() 35 this->cmd_ctrl(mtd, cmd, NAND_CTRL_CLE | NAND_CTRL_CHANGE); in nand_command() 38 this->cmd_ctrl(mtd, offs, NAND_CTRL_ALE | NAND_CTRL_CHANGE); in nand_command() 39 this->cmd_ctrl(mtd, page_addr & 0xff, NAND_CTRL_ALE); /* A[16:9] */ in nand_command() 40 this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff, in nand_command() 44 this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f, in nand_command() 48 this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); in nand_command() 53 while (!this->dev_ready(mtd)) in nand_command() 65 struct nand_chip *this = mtd_to_nand(mtd); in nand_command() local [all …]
|
| /openbmc/u-boot/lib/efi_loader/ |
| H A D | efi_net.c | 56 static efi_status_t EFIAPI efi_net_start(struct efi_simple_network *this) in efi_net_start() argument 60 EFI_ENTRY("%p", this); in efi_net_start() 63 if (!this) { in efi_net_start() 68 if (this->mode->state != EFI_NETWORK_STOPPED) in efi_net_start() 71 this->mode->state = EFI_NETWORK_STARTED; in efi_net_start() 86 static efi_status_t EFIAPI efi_net_stop(struct efi_simple_network *this) in efi_net_stop() argument 90 EFI_ENTRY("%p", this); in efi_net_stop() 93 if (!this) { in efi_net_stop() 98 if (this->mode->state == EFI_NETWORK_STOPPED) in efi_net_stop() 101 this->mode->state = EFI_NETWORK_STOPPED; in efi_net_stop() [all …]
|
| H A D | efi_hii_config.c | 22 extract_config(const struct efi_hii_config_routing_protocol *this, in extract_config() argument 27 EFI_ENTRY("%p, \"%ls\", %p, %p", this, request, progress, results); in extract_config() 33 export_config(const struct efi_hii_config_routing_protocol *this, in export_config() argument 36 EFI_ENTRY("%p, %p", this, results); in export_config() 42 route_config(const struct efi_hii_config_routing_protocol *this, in route_config() argument 46 EFI_ENTRY("%p, \"%ls\", %p", this, configuration, progress); in route_config() 52 block_to_config(const struct efi_hii_config_routing_protocol *this, in block_to_config() argument 59 EFI_ENTRY("%p, \"%ls\", %p, %zu, %p, %p", this, config_request, in block_to_config() 66 config_to_block(const struct efi_hii_config_routing_protocol *this, in config_to_block() argument 72 EFI_ENTRY("%p, \"%ls\", %p, %p, %p", this, config_resp, in config_to_block() [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/poco/poco/ |
| H A D | 0002-fix-Foundation-Build-error-with-GCC-15-class-Poco-Pr.patch | 24 if (&delegate != this) 26 - this->_pTarget = delegate._pTarget; 27 this->_receiverObject = delegate._receiverObject; 28 this->_receiverMethod = delegate._receiverMethod; 29 this->_priority = delegate._priority; 32 if (&delegate != this) 34 - this->_pTarget = delegate._pTarget; 35 this->_receiverObject = delegate._receiverObject; 36 this->_receiverMethod = delegate._receiverMethod; 37 this->_priority = delegate._priority; [all …]
|
| /openbmc/webui-vue/src/views/Operations/Kvm/ |
| H A D | KvmConsole.vue | 68 terminalClass: this.isFullWindow ? 'full-window' : '', 69 marginClass: this.isFullWindow ? 'margin-left-full-window' : '', 77 if (this.status === Connected) { 79 } else if (this.status === Disconnected) { 85 if (this.status === Connected) { 87 } else if (this.status === Disconnected) { 94 this.$store.dispatch('global/getSystemInfo'); 97 this.openTerminal(); 100 window.removeEventListener('resize', this.resizeKvmWindow); 101 this.closeTerminal(); [all …]
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/ |
| H A D | UserManagement.vue | 169 this.hideLoader(); 228 return this.$store.getters['userManagement/allUsers']; 232 return this.allUsers.map((user) => { 244 enabled: this.editEnable(user), 250 user.UserName === this.$store.getters['global/username'] 263 return this.$store.getters['userManagement/accountSettings']; 266 return this.$store.getters['userManagement/accountPasswordRequirements']; 270 this.startLoader(); 271 this.$store.dispatch('userManagement/getUsers').finally(() => { 272 this.endLoader(); [all …]
|
| H A D | ModalUser.vue | 289 disabled: this.$store.getters['global/username'], 295 return this.modelValue; 298 this.$emit('update:modelValue', value); 302 return this.newUser 303 ? this.i18n.t('pageUserManagement.addUser') 304 : this.i18n.t('pageUserManagement.editUser'); 307 return this.user ? false : true; 310 return this.$store.getters['userManagement/accountSettings']; 313 return !this.accountSettings.accountLockoutDuration; 316 return this.$store.getters['userManagement/accountRoles']; [all …]
|
| /openbmc/webui-vue/src/views/Settings/PowerRestorePolicy/ |
| H A D | PowerRestorePolicy.vue | 39 this.hideLoader(); 56 return this.$store.getters['powerPolicy/powerRestorePolicies']; 60 return this.$store.getters['powerPolicy/powerRestoreCurrentPolicy']; 63 this.policyValue = policy; 68 this.startLoader(); 69 this.renderPowerRestoreSettings(); 74 this.$store.dispatch('powerPolicy/getPowerRestorePolicies'), 75 this.$store.dispatch('powerPolicy/getPowerRestoreCurrentPolicy'), 77 this.options.length = 0; 78 this.powerRestorePolicies.map((item) => { [all …]
|
| /openbmc/webui-vue/src/views/ProfileSettings/ |
| H A D | ProfileSettings.vue | 194 isUtcDisplay: this.$store.getters['global/isUtcDisplay'], 200 return this.$store.getters['global/username']; 203 return this.$store.getters['userManagement/accountPasswordRequirements']; 206 return this.localOffset(); 210 this.startLoader(); 211 this.$store 213 .finally(() => this.endLoader()); 219 minLength: minLength(this.passwordRequirements.minLength), 220 maxLength: maxLength(this.passwordRequirements.maxLength), 223 sameAsPassword: sameAs(this.form.newPassword), [all …]
|
| /openbmc/webui-vue/src/views/Settings/DateTime/ |
| H A D | DateTime.vue | 214 this.hideLoader(); 226 locale: this.$store.getters['global/languagePreference'], 244 return this.form.configurationSelected === 'manual'; 250 return this.form.configurationSelected === 'manual'; 258 return this.form.configurationSelected === 'ntp'; 268 return this.$store.getters['global/bmcTime']; 271 return this.form.configurationSelected === 'ntp'; 274 return this.form.configurationSelected === 'manual'; 277 return this.$store.getters['global/isUtcDisplay']; 280 if (this.isUtcDisplay) { [all …]
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/ |
| H A D | Certificates.vue | 140 this.hideLoader(); 186 return this.$store.getters['certificates/allCertificates']; 189 return this.certificates.map((certificate) => { 208 return this.$store.getters['certificates/availableUploadTypes']; 211 return this.$store.getters['global/bmcTime']; 214 return this.certificates.reduce((acc, val) => { 215 const daysUntilExpired = this.getDaysUntilExpired(val.validUntil); 223 return this.certificates.reduce((acc, val) => { 224 const daysUntilExpired = this.getDaysUntilExpired(val.validUntil); 233 this.startLoader(); [all …]
|
| H A D | ModalUploadCertificate.vue | 111 return this.certificate 112 ? this.i18n.t('pageCertificates.replaceCertificate') 113 : this.i18n.t('pageCertificates.addNewCertificate'); 116 return this.$store.getters['certificates/availableUploadTypes']; 119 return this.certificateTypes.map(({ type, label }) => { 130 this.form.certificateType = options[0].value; 139 return !this.certificate; 150 this.v$.$touch(); 151 if (this.v$.$invalid) return; 152 this.$emit('ok', { [all …]
|
| /openbmc/webui-vue/src/views/Operations/SerialOverLan/ |
| H A D | SerialOverLanConsole.vue | 76 return this.$store.getters['global/serverStatus']; 79 return this.serverStatus === 'off' ? false : true; 82 return this.connection ? 'success' : 'danger'; 86 this.$store.dispatch('global/getSystemInfo'); 89 this.openTerminal(); 92 window.removeEventListener('resize', this.resizeConsoleWindow); 93 this.closeTerminal(); 97 const token = this.$store.getters['authentication/token']; 98 this.ws = new WebSocket(`wss://${window.location.host}/console/default`, [ 104 this.term = new Terminal({ [all …]
|
| /openbmc/u-boot/lib/efi_selftest/ |
| H A D | efi_selftest_loadimage.c | 146 (struct efi_simple_file_system_protocol *this, 150 (struct efi_file_handle *this, 154 static efi_status_t EFIAPI close(struct efi_file_handle *this); 156 static efi_status_t EFIAPI delete(struct efi_file_handle *this); 159 (struct efi_file_handle *this, efi_uintn_t *buffer_size, void *buffer); 162 (struct efi_file_handle *this, efi_uintn_t *buffer_size, void *buffer); 164 static efi_status_t EFIAPI getpos(struct efi_file_handle *this, u64 *pos); 166 static efi_status_t EFIAPI setpos(struct efi_file_handle *this, u64 pos); 169 (struct efi_file_handle *this, const efi_guid_t *info_type, 173 (struct efi_file_handle *this, const efi_guid_t *info_type, [all …]
|
| /openbmc/webui-vue/src/views/Operations/VirtualMedia/ |
| H A D | VirtualMedia.vue | 133 return this.$store.getters['virtualMedia/proxyDevices']; 136 return this.$store.getters['virtualMedia/legacyDevices']; 140 this.$store.dispatch('global/getSystemInfo'); 141 if (this.proxyDevices.length > 0 || this.legacyDevices.length > 0) return; 142 this.startLoader(); 143 this.$store 145 .finally(() => this.endLoader()); 149 const token = this.$store.getters['authentication/token']; 157 this.successToast( 161 this.errorToast( [all …]
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/Ldap/ |
| H A D | Ldap.vue | 267 this.hideLoader(); 279 ldapAuthenticationEnabled: this.$store.getters['ldap/isServiceEnabled'], 282 this.$store.getters['ldap/isActiveDirectoryEnabled'], 301 return this.$store.getters['certificates/allCertificates']; 304 const caCertificate = find(this.sslCertificates, { 311 const ldapCertificate = find(this.sslCertificates, { 318 return this.form.secureLdapEnabled ? 'ldaps://' : 'ldap://'; 323 this.form.ldapAuthenticationEnabled = value; 326 this.form.activeDirectoryEnabled = value; 327 this.setFormValues(); [all …]
|
| /openbmc/u-boot/lib/zlib/ |
| H A D | inftrees.c | 49 code this; /* table entry for duplication */ in inflate_table() local 114 this.op = (unsigned char)64; /* invalid code marker */ in inflate_table() 115 this.bits = (unsigned char)1; in inflate_table() 116 this.val = (unsigned short)0; in inflate_table() 117 *(*table)++ = this; /* make a table to force an error */ in inflate_table() 118 *(*table)++ = this; in inflate_table() 214 this.bits = (unsigned char)(len - drop); in inflate_table() 216 this.op = (unsigned char)0; in inflate_table() 217 this.val = work[sym]; in inflate_table() 220 this.op = (unsigned char)(extra[work[sym]]); in inflate_table() [all …]
|