/openbmc/phosphor-webui/app/server-health/controllers/ |
H A D | sensors-overview-controller.js | 12 '$scope', '$log', '$window', 'APIUtils', 'dataService', 'Constants', 13 function($scope, $log, $window, APIUtils, dataService, Constants) { argument 14 $scope.dataService = dataService; 16 $scope.dropdown_selected = false; 18 $scope.$log = $log; 19 $scope.customSearch = ''; 20 $scope.searchTerms = []; 21 $scope.messages = Constants.MESSAGES.SENSOR; 22 $scope.selectedSeverity = 24 $scope.export_name = 'sensors.json'; [all …]
|
H A D | syslog-controller.js | 20 '$scope', 'APIUtils', 'Constants', 21 function($scope, APIUtils, Constants) { argument 22 $scope.itemsPerPage = Constants.PAGINATION.LOG_ITEMS_PER_PAGE; 23 $scope.loading = true; 24 $scope.sysLogs = []; 25 $scope.customSearch = ''; 26 $scope.searchTerms = []; 27 $scope.sortKey = 'Id'; 28 $scope.showLogDropdown = false; 29 $scope.recordTypeList = [all …]
|
H A D | log-controller.js | 20 '$scope', '$window', 'APIUtils', 'dataService', 'Constants', 23 $scope, $window, APIUtils, dataService, Constants, $routeParams, argument 25 $scope.dataService = dataService; 26 $scope.logs = []; 27 $scope.filteredLogs = []; 28 $scope.tmz = ''; 29 $scope.itemsPerPage = Constants.PAGINATION.LOG_ITEMS_PER_PAGE; 30 $scope.loading = false; 37 $scope.selectedSeverity = 41 $scope.selectedSeverity.all = false; [all …]
|
H A D | inventory-overview-controller.js | 13 '$scope', '$window', 'APIUtils', 'dataService', 14 function($scope, $window, APIUtils, dataService) { argument 15 $scope.dataService = dataService; 16 $scope.hardwares = []; 17 $scope.originalData = {}; 18 $scope.customSearch = ''; 19 $scope.searchTerms = []; 20 $scope.loading = true; 23 $scope.hardwares = data; 24 $scope.originalData = JSON.stringify(originalData); [all …]
|
/openbmc/phosphor-webui/app/configuration/controllers/ |
H A D | network-controller.js | 13 '$scope', '$window', 'APIUtils', 'dataService', '$timeout', '$route', '$q', 16 $scope, $window, APIUtils, dataService, $timeout, $route, $q, argument 18 $scope.dataService = dataService; 19 $scope.network = {}; 20 $scope.oldInterface = {}; 21 $scope.interface = {}; 22 $scope.networkDevice = false; 23 $scope.hostname = ''; 24 $scope.defaultGateway = ''; 25 $scope.selectedInterface = ''; [all …]
|
H A D | firmware-controller.js | 13 '$scope', '$window', 'APIUtils', 'dataService', '$location', 16 $scope, $window, APIUtils, dataService, $location, $anchorScroll, argument 18 $scope.dataService = dataService; 21 $scope.gotoAnchor = function() { 26 $scope.firmwares = []; 27 $scope.bmcActiveVersion = ''; 28 $scope.hostActiveVersion = ''; 29 $scope.activate_confirm = false; 30 $scope.delete_image_id = ''; 31 $scope.delete_image_version = ''; [all …]
|
H A D | snmp-controller.js | 13 '$scope', '$window', 'APIUtils', '$route', '$q', 'toastService', 14 function($scope, $window, APIUtils, $route, $q, toastService) { argument 15 $scope.managers = []; 16 $scope.loading = true; 17 $scope.managersToDelete = []; 24 $scope.managers.push({ 39 $scope.loading = false; 42 $scope.addNewSNMPManager = function() { 43 $scope.managers.push({address: '', port: ''}); 46 $scope.removeSNMPManager = function(index) { [all …]
|
H A D | date-time-controller.js | 13 '$scope', 'APIUtils', '$route', '$q', 'toastService', '$timeout', 14 function($scope, APIUtils, $route, $q, toastService, $timeout) { argument 15 $scope.bmc = {}; 17 $scope.host = {}; 18 $scope.ntp = {servers: []}; 19 $scope.time = {mode: '', owner: ''}; 22 $scope.timeOwners = ['BMC', 'Host', 'Both', 'Split']; 23 $scope.loading = true; 32 $scope.bmc.date = 35 $scope.bmc.date.setMilliseconds(0); [all …]
|
/openbmc/phosphor-webui/app/common/directives/ |
H A D | ldap-user-roles.js | 10 scope: {roleGroups: '=', enabled: '=', roleGroupType: '='}, 12 '$scope', 'APIUtils', 'toastService', '$q', 13 function($scope, APIUtils, toastService, $q) { 14 $scope.privileges = []; 15 $scope.loading = true; 16 $scope.newGroup = {}; 17 $scope.selectedGroupIndex = ''; 18 $scope.editGroup = false; 19 $scope.removeGroup = false; 20 $scope.removeMultipleGroups = false; [all …]
|
H A D | app-navigation.js | 9 'scope': {'path': '=', 'showNavigation': '='}, 11 '$scope', '$location', 'dataService', 12 function($scope, $location, dataService) { 13 $scope.showHealthMenu = false; 14 $scope.showControlMenu = false; 15 $scope.showConfigMenu = false; 16 $scope.showAccessMenu = false; 17 $scope.dataService = dataService; 19 $scope.change = function(firstLevel) { 22 $scope.showHealthMenu = !$scope.showHealthMenu; [all …]
|
H A D | log-filter.js | 11 '$rootScope', '$scope', 'dataService', '$location', 12 function($rootScope, $scope, dataService, $location) { 13 $scope.dataService = dataService; 14 $scope.supportsDateInput = true; 16 $scope.toggleSeverityAll = function() { 17 $scope.selectedSeverity.all = !$scope.selectedSeverity.all; 19 if ($scope.selectedSeverity.all) { 20 $scope.selectedSeverity.low = false; 21 $scope.selectedSeverity.medium = false; 22 $scope.selectedSeverity.high = false; [all …]
|
H A D | syslog-filter.js | 11 '$rootScope', '$scope', 'dataService', '$location', 12 function($rootScope, $scope, dataService, $location) { 13 $scope.dataService = dataService; 15 $scope.toggleSeverityAll = function() { 16 $scope.selectedSeverityList = []; 19 $scope.toggleSeverity = function(severity) { 21 $scope.selectedSeverityList = []; 25 var index = $scope.selectedSeverityList.indexOf(severity); 27 $scope.selectedSeverityList.splice(index, 1); 29 $scope.selectedSeverityList.push(severity); [all …]
|
H A D | log-search-control.js | 11 '$rootScope', '$scope', 'dataService', '$location', 12 function($rootScope, $scope, dataService, $location) { 13 $scope.dataService = dataService; 14 $scope.doSearchOnEnter = function(event) { 16 $scope.customSearch.replace(/^\s+/g, '').replace(/\s+$/g, ''); 18 $scope.clearSearchItem(); 19 $scope.addSearchItem(search); 22 $scope.clearSearchItem(); 27 $scope.clear = function() { 28 $scope.customSearch = ''; [all …]
|
H A D | certificate.js | 10 'scope': {'cert': '=', 'reload': '&'}, 12 '$scope', 'APIUtils', 'toastService', 'Constants', '$uibModal', 13 function($scope, APIUtils, toastService, Constants, $uibModal) { 26 $scope.getCertificateName = function(certificateDescription) { 38 $scope.isDeletable = function(certificate) { 42 $scope.confirmDeleteCert = function(certificate) { 77 $scope.confirm_delete = false; 81 $scope.loading = false; 83 $scope.getCertificateName(certificate.Description) + 85 $scope.reload(); [all …]
|
/openbmc/phosphor-webui/app/access-control/controllers/ |
H A D | certificate-controller.js | 13 '$scope', 'APIUtils', '$q', 'Constants', 'toastService', '$timeout', 16 $scope, APIUtils, $q, Constants, toastService, $timeout, $uibModal) { argument 17 $scope.loading = false; 18 $scope.certificates = []; 19 $scope.availableCertificateTypes = []; 20 $scope.allCertificateTypes = Constants.CERTIFICATE_TYPES; 21 $scope.newCertificate = {}; 22 $scope.newCSR = {}; 23 $scope.keyBitLength = Constants.CERTIFICATE.KEY_BIT_LENGTH; 24 $scope.keyPairAlgorithm = Constants.CERTIFICATE.KEY_PAIR_ALGORITHM; [all …]
|
H A D | user-controller.js | 13 '$scope', 'APIUtils', 'toastService', '$uibModal', '$q', 14 function($scope, APIUtils, toastService, $uibModal, $q) { argument 15 $scope.loading; 16 $scope.accountSettings; 17 $scope.userRoles; 18 $scope.localUsers; 20 $scope.tableData = []; 21 $scope.tableHeader = [ 24 $scope.tableBatchActions = [ 75 $scope.loading = true; [all …]
|
H A D | ldap-controller.js | 13 '$scope', 'APIUtils', '$q', 'toastService', 14 function($scope, APIUtils, $q, toastService) { argument 15 $scope.loading = false; 16 $scope.isSecure = false; 17 $scope.ldapProperties = {}; 18 $scope.originalLdapProperties = {}; 19 $scope.submitted = false; 20 $scope.roleGroups = []; 21 $scope.roleGroupType = ''; 22 $scope.ldapCertExpiration = ''; [all …]
|
/openbmc/phosphor-webui/app/server-health/directives/ |
H A D | remote-logging-server.js | 10 '$scope', '$uibModal', 'toastService', 11 function($scope, $uibModal, toastService) { 41 $scope.activeModal; 42 $scope.activeModalProps; 44 $scope.remoteServer; 45 $scope.remoteServerForm; 46 $scope.loadError = true; 48 $scope.initModal = (type) => { 52 $scope.activeModal = type; 53 $scope.activeModalProps = modalActions.properties[type]; [all …]
|
/openbmc/phosphor-webui/app/server-control/controllers/ |
H A D | power-operations-controller.js | 13 '$scope', 'APIUtils', 'dataService', 'Constants', '$interval', '$q', 16 $scope, APIUtils, dataService, Constants, $interval, $q, toastService, argument 18 $scope.dataService = dataService; 19 $scope.loading = true; 20 $scope.oneTimeBootEnabled = false; 21 $scope.bootOverrideError = false; 22 $scope.bootSources = []; 23 $scope.boot = {}; 24 $scope.defaultRebootSetting = 'warm-reboot'; 25 $scope.defaultShutdownSetting = 'warm-shutdown'; [all …]
|
H A D | power-usage-controller.js | 13 '$scope', '$window', 'APIUtils', '$route', '$q', 'toastService', 14 function($scope, $window, APIUtils, $route, $q, toastService) { argument 15 $scope.power_consumption = ''; 16 $scope.power_cap = {}; 17 $scope.loading = false; 21 $scope.loading = true; 25 $scope.power_cap = data.data; 33 $scope.power_consumption = data; 45 $scope.loading = false; 49 $scope.setPowerCap = function() { [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/powerpc/power8/ |
H A D | memory.json | 5 …"BriefDescription": "Initial and Final Pump Scope was chip pump (prediction=correct) for all data … 6 …"PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was chip pum… 11 …"BriefDescription": "Initial and Final Pump Scope was chip pump (prediction=correct) for a demand … 12 …"PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was chip pum… 47 …"BriefDescription": "Initial and Final Pump Scope was group pump (prediction=correct) for a demand… 48 …"PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was group pu… 53 …"BriefDescription": "Final Pump Scope (Group) ended up either larger or smaller than Initial Pump … 54 …mp Scope(Group) to get data sourced, ended up larger than Initial Pump Scope OR Final Pump Scope(G… 59 …"BriefDescription": "Final Pump Scope (Group) ended up larger than Initial Pump Scope (Chip) for a… 60 …"PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pu… [all …]
|
/openbmc/phosphor-webui/app/overview/controllers/ |
H A D | system-overview-controller.js | 13 '$scope', '$window', 'APIUtils', 'dataService', 'Constants', '$q', 14 function($scope, $window, APIUtils, dataService, Constants, $q) { argument 15 $scope.dataService = dataService; 16 $scope.dropdown_selected = false; 17 $scope.logs = []; 18 $scope.server_info = {}; 19 $scope.bmc_firmware = ''; 20 $scope.bmc_time = ''; 21 $scope.server_firmware = ''; 22 $scope.power_consumption = ''; [all …]
|
/openbmc/linux/drivers/acpi/acpica/ |
H A D | psscope.c | 4 * Module Name: psscope - Parser scope stack management routines 32 return (parser_state->scope->parse_scope.op); in acpi_ps_get_parent_scope() 41 * RETURN: Boolean, TRUE = scope completed. 44 * 1) AML pointer is at or beyond the end of the scope 45 * 2) The scope argument count has reached zero. 53 ((parser_state->aml >= parser_state->scope->parse_scope.arg_end in acpi_ps_has_completed_scope() 54 || !parser_state->scope->parse_scope.arg_count))); in acpi_ps_has_completed_scope() 62 * root - the Root Node of this new scope 66 * DESCRIPTION: Allocate and init a new scope object 74 union acpi_generic_state *scope; in acpi_ps_init_scope() local [all …]
|
/openbmc/phosphor-webui/app/profile-settings/controllers/ |
H A D | profile-settings-controller.js | 14 '$scope', 'APIUtils', 'dataService', 'toastService', 15 function($scope, APIUtils, dataService, toastService) { argument 16 $scope.username; 17 $scope.minPasswordLength; 18 $scope.maxPasswordLength; 19 $scope.password; 20 $scope.passwordConfirm; 27 $scope.loading = true; 28 APIUtils.updateUser($scope.username, null, password) 37 $scope.password = ''; [all …]
|
/openbmc/phosphor-webui/app/login/controllers/ |
H A D | login-controller.js | 13 '$scope', 18 function($scope, $window, dataService, userModel, $location) { argument 19 $scope.dataService = dataService; 20 $scope.serverUnreachable = false; 21 $scope.invalidCredentials = false; 22 $scope.host = $scope.dataService.host.replace(/^https?\:\/\//ig, ''); 24 $scope.tryLogin = function(host, username, password, event) { 28 $scope.login(host, username, password); 31 $scope.login = function(host, username, password) { 32 $scope.serverUnreachable = false; [all …]
|