/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery.treetable.js | 17 this.row = row; 18 this.tree = tree; 19 this.settings = settings; 22 this.id = this.row.data(this.settings.nodeIdAttr); 24 // TODO Move this to a setParentId function? 25 parentId = this.row.data(this.settings.parentIdAttr); 27 this.parentId = parentId; 30 this.treeCell = $(this.row.children(this.settings.columnElType)[this.settings.column]); 31 this.expander = $(this.settings.expanderTemplate); 32 this.indenter = $(this.settings.indenterTemplate); [all …]
|
H A D | typeahead.jquery.js | 17 })(this, function($) { 109 var context = this, args = arguments, later, callNow; 135 context = this; 263 this.$el = $(o.el); 270 this.$el.trigger.apply(this.$el, args); 276 $e = this._trigger("before" + type, args); 281 this._trigger(type, [].slice.call(arguments, 1)); 283 this._trigger(deprecatedType, [].slice.call(arguments, 1)); 301 return this; 305 this._callbacks = this._callbacks || {}; [all …]
|
H A D | bootstrap-3.4.1.min.js | 6 …this;n(this).one("bsTransitionEnd",function(){e=!0});return setTimeout(function(){e||n(i).trigger(…
|
H A D | bootstrap-3.4.1.js | 56 var $el = this 57 $(this).one('bsTransitionEnd', function () { called = true }) 60 return this 72 if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) 96 $(el).on('click', dismiss, this.close) 104 var $this = $(this) 105 var selector = $this.attr('data-target') 108 selector = $this.attr('href') 118 $parent = $this.closest('.alert') 144 return this.each(function () { [all …]
|
/openbmc/linux/sound/usb/line6/ |
H A D | midibuf.c | 33 static int midibuf_is_empty(struct midi_buffer *this) in midibuf_is_empty() argument 35 return (this->pos_read == this->pos_write) && !this->full; in midibuf_is_empty() 38 static int midibuf_is_full(struct midi_buffer *this) in midibuf_is_full() argument 40 return this->full; in midibuf_is_full() 43 void line6_midibuf_reset(struct midi_buffer *this) in line6_midibuf_reset() argument 45 this->pos_read = this->pos_write = this->full = 0; in line6_midibuf_reset() 46 this->command_prev = -1; in line6_midibuf_reset() 49 int line6_midibuf_init(struct midi_buffer *this, int size, int split) in line6_midibuf_init() argument 51 this->buf = kmalloc(size, GFP_KERNEL); in line6_midibuf_init() 53 if (this->buf == NULL) in line6_midibuf_init() [all …]
|
/openbmc/linux/drivers/net/wireless/legacy/ |
H A D | wl3501_cs.c | 188 static inline void wl3501_switch_page(struct wl3501_card *this, u8 page) in wl3501_switch_page() argument 190 wl3501_outb(page, this->base_addr + WL3501_NIC_BSS); in wl3501_switch_page() 199 static int wl3501_get_flash_mac_addr(struct wl3501_card *this) in wl3501_get_flash_mac_addr() argument 201 int base_addr = this->base_addr; in wl3501_get_flash_mac_addr() 210 this->mac_addr[0] = inb(base_addr + WL3501_NIC_IODPA); in wl3501_get_flash_mac_addr() 212 this->mac_addr[1] = inb(base_addr + WL3501_NIC_IODPA); in wl3501_get_flash_mac_addr() 214 this->mac_addr[2] = inb(base_addr + WL3501_NIC_IODPA); in wl3501_get_flash_mac_addr() 216 this->mac_addr[3] = inb(base_addr + WL3501_NIC_IODPA); in wl3501_get_flash_mac_addr() 218 this->mac_addr[4] = inb(base_addr + WL3501_NIC_IODPA); in wl3501_get_flash_mac_addr() 220 this->mac_addr[5] = inb(base_addr + WL3501_NIC_IODPA); in wl3501_get_flash_mac_addr() [all …]
|
/openbmc/linux/drivers/clk/mediatek/ |
H A D | Kconfig | 18 This driver supports MediaTek frequency hopping and 27 This driver supports MediaTek MT2701 basic clocks. 33 This driver supports MediaTek MT2701 mmsys clocks. 39 This driver supports MediaTek MT2701 imgsys clocks. 45 This driver supports MediaTek MT2701 vdecsys clocks. 51 This driver supports MediaTek MT2701 hifsys clocks. 57 This driver supports MediaTek MT2701 ethsys clocks. 63 This driver supports MediaTek MT2701 bdpsys clocks. 69 This driver supports Mediatek MT2701 audsys clocks. 75 This driver supports MediaTek MT2701 g3dsys clocks. [all …]
|
/openbmc/openbmc-tools/dbus-vis/ |
H A D | timeline_view.js | 127 this.Intervals = []; 128 this.Titles = []; // { "header":true|false, "title":string, "intervals_idxes":[int] } 129 this.Heights = []; // Visual height for each line 130 this.HeaderCollapsed = {}; 131 this.TitleProperties = []; // [Visual height, Is Header] 132 this.LowerBoundTime = RANGE_LEFT_INIT; 133 this.UpperBoundTime = RANGE_RIGHT_INIT; 134 this.LowerBoundTimeTarget = this.LowerBoundTime; 135 this.UpperBoundTimeTarget = this.UpperBoundTime; 136 this.LastTimeLowerBound = 0; [all …]
|
H A D | renderer.js | 1 // This file is required by the index.html file and will 3 // No Node.js APIs are available in this process because 13 this.canvas1 = c1; 14 this.canvas2 = c2; 15 this.canvas3 = c3; 16 this.width1 = c1.width; this.height1 = c1.height; 17 this.width2 = c2.width; this.height2 = c2.height; 18 this.width3 = c3.width; this.height3 = c3.height; 19 this.ctx1 = this.canvas1.getContext('2d'); 20 this.ctx2 = this.canvas2.getContext('2d'); [all …]
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | Port.v1_15_0.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 34 "description": "The available OEM-specific actions for this resource.", 35 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 43 "longDescription": "This type shall contain CXL-specific properties for a port.", 46 "description": "This property shall specify a valid odata or Redfish property.", 68 "description": "The congestion properties for this CXL port.", 69 … "longDescription": "This property shall contain the congestion properties for this CXL port.", 82 …"longDescription": "This property shall contain the CXL Specification-defined 'Connected Device Mo… [all …]
|
H A D | EthernetInterface.v1_12_3.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 28 "description": "The available OEM-specific actions for this resource.", 29 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 55 "description": "DHCPv4 configuration for this interface.", 56 "longDescription": "This type shall describe the configuration of DHCP v4.", 59 "description": "This property shall specify a valid odata or Redfish property.", 73 … "description": "An indication of whether DHCP v4 is enabled on this Ethernet interface.", 74 …"longDescription": "This property shall indicate whether DHCP v4 is enabled for this Ethernet inte… [all …]
|
H A D | NetworkDeviceFunction.v1_9_2.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 28 "description": "The available OEM-specific actions for this resource.", 29 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 58 "Disabled": "Do not indicate to UEFI/BIOS that this device is bootable.", 59 …"FibreChannel": "Boot this device by using the embedded Fibre Channel support and configuration. … 60 …"FibreChannelOverEthernet": "Boot this device by using the embedded Fibre Channel over Ethernet (F… 61 …"HTTP": "Boot this device by using the embedded HTTP/HTTPS support. Only applicable if the `NetDe… 62 …"PXE": "Boot this device by using the embedded PXE support. Only applicable if the `NetDevFuncTyp… [all …]
|
H A D | ProcessorMetrics.v1_6_4.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 31 "description": "The available OEM-specific actions for this resource.", 32 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 40 …"longDescription": "This type shall contain properties that describe the C-state residency of the … 43 "description": "This property shall specify a valid odata or Redfish property.", 58 …n": "This property shall contain the C-state level, such as C0, C1, or C2. When this resource is … 66 …ription": "The percentage of time that the processor or core has spent in this particular level of… 67 …This property shall contain the percentage of time, `0` to `100`, that the processor or core has s… [all …]
|
H A D | Cable.v1_2_4.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 28 "description": "The available OEM-specific actions for this resource.", 29 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 37 … "longDescription": "This resource contains a simple cable for a Redfish implementation.", 40 "description": "This property shall specify a valid odata or Redfish property.", 67 "description": "The available actions for this resource.", 68 … "longDescription": "This property shall contain the available actions for this resource." 72 "description": "The link to the assembly associated with this cable.", [all …]
|
H A D | HostInterface.v1_3_3.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 28 "description": "The available OEM-specific actions for this resource.", 29 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 52 "description": "The credential bootstrapping settings for this interface.", 53 …: "This type shall contain settings for the Redfish Host Interface Specification-defined 'credenti… 56 "description": "This property shall specify a valid odata or Redfish property.", 70 …: "An indication of whether credential bootstrapping is enabled after a reset for this interface.", 71 …"longDescription": "This property shall indicate whether credential bootstrapping is enabled after… [all …]
|
H A D | Switch.v1_9_3.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 31 "description": "The available OEM-specific actions for this resource.", 32 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 40 "longDescription": "This type shall contain CXL-specific properties for a switch.", 43 "description": "This property shall specify a valid odata or Redfish property.", 57 … "description": "The maximum number of Virtual CXL Switches (VCSs) supported in this switch.", 58 …"longDescription": "This property shall contain the maximum number of Virtual CXL Switches (VCSs) … 64 … "description": "The total number of virtual PCI-to-PCI bridges (vPPBs) supported in this switch.", [all …]
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/ |
H A D | Port.v1_15_0.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 34 "description": "The available OEM-specific actions for this resource.", 35 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 43 "longDescription": "This type shall contain CXL-specific properties for a port.", 46 "description": "This property shall specify a valid odata or Redfish property.", 68 "description": "The congestion properties for this CXL port.", 69 … "longDescription": "This property shall contain the congestion properties for this CXL port.", 82 …"longDescription": "This property shall contain the CXL Specification-defined 'Connected Device Mo… [all …]
|
H A D | EthernetInterface.v1_12_3.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 28 "description": "The available OEM-specific actions for this resource.", 29 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 55 "description": "DHCPv4 configuration for this interface.", 56 "longDescription": "This type shall describe the configuration of DHCP v4.", 59 "description": "This property shall specify a valid odata or Redfish property.", 73 … "description": "An indication of whether DHCP v4 is enabled on this Ethernet interface.", 74 …"longDescription": "This property shall indicate whether DHCP v4 is enabled for this Ethernet inte… [all …]
|
H A D | Cable.v1_2_4.json | 9 "description": "The available actions for this resource.", 10 "longDescription": "This type shall contain the available actions for this resource.", 13 "description": "This property shall specify a valid odata or Redfish property.", 28 "description": "The available OEM-specific actions for this resource.", 29 …"longDescription": "This property shall contain the available OEM-specific actions for this resour… 37 … "longDescription": "This resource contains a simple cable for a Redfish implementation.", 40 "description": "This property shall specify a valid odata or Redfish property.", 67 "description": "The available actions for this resource.", 68 … "longDescription": "This property shall contain the available actions for this resource." 72 "description": "The link to the assembly associated with this cable.", [all …]
|
/openbmc/webui-vue/src/utilities/ |
H A D | NBDServer.js | 35 this.socketStarted = () => {}; 36 this.socketClosed = () => {}; 37 this.errorReadingFile = () => {}; 38 this.file = file; 39 this.id = id; 40 this.endpoint = endpoint; 41 this.ws = null; 42 this.state = NBD_STATE_UNKNOWN; 43 this.msgbuf = null; 44 this.start = function () { [all …]
|
/openbmc/phosphor-webui/app/common/services/ |
H A D | dataService.js | 16 this.server_health = Constants.SERVER_HEALTH.unknown; 17 this.server_state = 'Unreachable'; 18 this.LED_state = Constants.LED_STATE_TEXT.off; 19 this.last_updated = new Date(); 21 this.loading = false; 22 this.server_unreachable = false; 23 this.showNavigation = false; 24 this.bodyStyle = {}; 25 this.path = ''; 27 this.hostname = ''; [all …]
|
/openbmc/phosphor-webui/app/common/components/table/ |
H A D | table.js | 63 this.sortAscending = true; 64 this.activeSort; 65 this.expandedRows = new Set(); 66 this.selectedRows = new Set(); 67 this.selectHeaderCheckbox = false; 68 this.someSelected = false; 76 this.data.sort((a, b) => { 77 const aProp = a.uiData[this.activeSort]; 78 const bProp = b.uiData[this.activeSort]; 82 if (this.sortAscending) { [all …]
|
/openbmc/u-boot/drivers/mtd/onenand/ |
H A D | onenand_base.c | 17 * This program is free software; you can redistribute it and/or modify 97 * Warning! This array is used with the memcpy_16() function, thus 98 * it must be aligned to 2 bytes. GCC can make this array unaligned 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() 226 * @param this - OneNAND device structure 229 static unsigned int flexonenand_block(struct onenand_chip *this, loff_t addr) in flexonenand_block() argument [all …]
|
/openbmc/linux/drivers/media/i2c/ |
H A D | Kconfig | 19 If your board doesn't have an I2C IR chip, you may disable this 47 This is a Video4Linux2 sensor driver for the ON Semiconductor 50 To compile this driver as a module, choose M here: the 56 This is a Video4Linux2 sensor driver for the Hynix 59 To compile this driver as a module, choose M here: the 65 This is a Video4Linux2 sensor driver for the Hynix 68 To compile this driver as a module, choose M here: the 74 This is a Video4Linux2 sensor driver for the Hynix 77 To compile this driver as a module, choose M here: the 83 This is a Video4Linux2 sensor driver for the Sony [all …]
|
/openbmc/rest-dbus/resources/ |
H A D | jstree.min.js | 2 …this._id=a,this._cnt=0,this._wrk=null,this._data={core:{themes:{name:!1,dots:!1,icons:!1},selected… 3 …this.element)[0]:null,!(null===g||g&&q[f.parent].state.opened))return!1;h=a.inArray(f.id,null===g?… 4 this._data.core.themes.name=b,this.element.addClass("jstree-"+b),this.element[this.settings.core.th… 5 …this.settings.dnd.large_drag_target&&a(b.target).closest(".jstree-node")[0]!==b.currentTarget)retu…
|