Home
last modified time | relevance | path

Searched full:scope (Results 1 – 25 of 1028) sorted by relevance

12345678910>>...42

/openbmc/phosphor-webui/app/server-health/controllers/
H A Dsensors-overview-controller.js12 '$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 Dsyslog-controller.js20 '$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 Dlog-controller.js20 '$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 Dinventory-overview-controller.js13 '$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 Dnetwork-controller.js13 '$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 Dfirmware-controller.js13 '$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 Dsnmp-controller.js13 '$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 Ddate-time-controller.js13 '$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 Dldap-user-roles.js10 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 Dapp-navigation.js9 '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 Dlog-filter.js11 '$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 Dsyslog-filter.js11 '$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 Dlog-search-control.js11 '$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 Dcertificate.js10 '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 Dcertificate-controller.js13 '$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 Duser-controller.js13 '$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 Dldap-controller.js13 '$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 Dremote-logging-server.js10 '$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 Dpower-operations-controller.js13 '$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 Dpower-usage-controller.js13 '$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 Dmemory.json5 …"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 Dsystem-overview-controller.js13 '$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 Dpsscope.c4 * 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 Dprofile-settings-controller.js14 '$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 Dlogin-controller.js13 '$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 …]

12345678910>>...42