/openbmc/linux/Documentation/sphinx/ |
H A D | load_config.py | 9 def loadConfig(namespace): argument 21 and os.path.normpath(namespace["__file__"]) != os.path.normpath(config_file) ): 35 latex_documents = namespace['latex_documents'] 44 namespace['latex_documents'] = new_latex_docs 49 config = namespace.copy() 55 namespace.update(config) 57 config = namespace.copy() 59 namespace.update(config)
|
H A D | cdomain.py | 52 namespace = None variable 61 global namespace 63 namespace = match.group(1) 158 global namespace 192 if namespace: 193 fullname = namespace + "." + fullname 200 global namespace 213 if namespace: 214 fullname = namespace + "." + fullname
|
/openbmc/linux/Documentation/admin-guide/sysctl/ |
H A D | user.rst | 16 per user per user namespace limits. 24 The creation of per user per user namespace objects are charged to 25 the user in the user namespace who created the object and 26 verified to be below the per user limit in that user namespace. 34 user namespace does not allow a user to escape their current limits. 42 user namespace may create. 48 user namespace may create. 54 user namespace may create. 60 current user namespace may create. 66 user namespace may create. [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/ |
H A D | _lxml.py | 282 for prefix, namespace in list(nsmap.items()): 285 attrs[attribute] = namespace 292 namespace, attr = self._getNsTag(attr) 293 if namespace is None: 296 nsprefix = self._prefix_for_namespace(namespace) 297 attr = NamespacedAttribute(nsprefix, attr, namespace) 301 namespace, name = self._getNsTag(name) 302 nsprefix = self._prefix_for_namespace(namespace) 304 name, namespace, nsprefix, attrs, 308 def _prefix_for_namespace(self, namespace): argument [all …]
|
H A D | _html5lib.py | 166 def elementClass(self, name, namespace): argument 175 tag = self.soup.new_tag(name, namespace, **kwargs) 177 return Element(tag, self.soup, namespace) 226 if element.namespace: 227 name = "%s %s" % (prefixes[element.namespace], 236 name = "%s %s" % (prefixes[name.namespace], name.name) 281 def __init__(self, element, soup, namespace): argument 285 self.namespace = namespace 457 tag = self.soup.new_tag(self.element.name, self.namespace) 458 node = Element(tag, self.soup, self.namespace) [all …]
|
/openbmc/linux/Documentation/core-api/ |
H A D | symbol-namespaces.rst | 25 documentation purposes (think of the SUBSYSTEM_DEBUG namespace) as well as for 28 are required to import the namespace. Otherwise the kernel will, depending on 34 Symbols can be exported into namespace using different methods. All of them are 43 available to export symbols into a certain namespace: EXPORT_SYMBOL_NS() and 44 EXPORT_SYMBOL_NS_GPL(). They take one additional argument: the namespace. 47 namespace ``USB_STORAGE``, use:: 52 ``namespace`` set accordingly. A symbol that is exported without a namespace will 53 refer to ``NULL``. There is no default namespace if none is defined. ``modpost`` 54 and kernel/module/main.c make use the namespace at build time or module load 63 and EXPORT_SYMBOL_GPL() macro expansions that do not specify a namespace. [all …]
|
/openbmc/linux/Documentation/networking/ |
H A D | sysfs-tagging.rst | 11 namespace active multiple devices with the same name can show up in 18 By using the network namespace pointers as tags to separate out 23 Each sysfs directory entry may be tagged with a namespace via the 26 and KOBJ_NS_TYPES, and ns will point to the namespace to which it 30 ``void *ns[KOBJ_NS_TYPES]``. When a task in a tagging namespace 33 ``s_fs_info->ns[kobj_nstype]`` set to the new namespace. Note that 36 namespace exits, it will call kobj_ns_exit() to invalidate any 44 - current_ns() which returns current's namespace 45 - netlink_ns() which returns a socket's namespace 46 - initial_ns() which returns the initial namespace
|
H A D | mptcp-sysctl.rst | 14 per-namespace sysctl. 23 The default value matches TCP_RTO_MAX. This is a per-namespace 32 per-namespace sysctl. 45 This is a per-namespace sysctl. 53 per-namespace values configured over the MPTCP netlink 59 This is a per-namespace sysctl. 74 This is a per-namespace sysctl. 81 Support for selection of different schedulers. This is a per-namespace
|
/openbmc/linux/Documentation/firmware-guide/acpi/ |
H A D | namespace.rst | 17 The Linux ACPI subsystem converts ACPI namespace objects into a Linux 42 data structure called the ACPI namespace whose topology reflects the 83 All definition blocks are loaded into a single namespace. The namespace 86 namespace: 93 5. The '\' symbol represents the root of the namespace (i.e. names 94 prepended with '\' are relative to the namespace root). 95 6. The '^' symbol represents the parent of the current namespace node 97 current namespace node). 99 The figure below shows an example ACPI namespace:: 106 +-| _PR | Scope(_PR): the processor namespace [all …]
|
/openbmc/openbmc/poky/scripts/lib/ |
H A D | argparse_oe.py | 64 def parse_args(self, args=None, namespace=None): argument 66 args, argv = self.parse_known_args(args, namespace) 105 def parse_known_args(self, args=None, namespace=None): argument 120 namespace, remaining_args = super(ArgumentSubParser, self).parse_known_args(args, namespace) 123 if hasattr(namespace, action.dest): 124 delattr(namespace, action.dest) 128 … namespace, extras = super(ArgumentSubParser, self).parse_known_args(remaining_args, namespace) 129 return namespace, extras
|
/openbmc/bmcweb/scripts/ |
H A D | generate_schema_enums.py | 25 def __init__(self, name, values, namespace, from_file): argument 28 self.namespace = namespace 34 namespace = element.attrib["Namespace"] 43 EntityTypes.append(Enum(name, enums, namespace, filename)) 126 namespace_split = element.namespace.split(".")[0] 129 for namespace, enum_list in enum_by_namespace.items(): 130 snake_case_namespace = camel_to_snake(namespace)
|
/openbmc/u-boot/Documentation/sphinx/ |
H A D | load_config.py | 9 def loadConfig(namespace): argument 21 and os.path.normpath(namespace["__file__"]) != os.path.normpath(config_file) ): 26 config = namespace.copy() 30 namespace.update(config)
|
/openbmc/phosphor-inventory-manager/ |
H A D | pimgen.py | 61 def namespace(self): member in Interface 91 self.namespace = kw.pop("namespace", []) 95 return "::".join(self.namespace + [self.name]) 220 self.namespace = kw.pop("namespace", []) 342 namespace = iface.namespace().split("::")[:-1] 344 t = Template(namespace=namespace, name=iface[-1]) 347 namespace + [name, NamedElement(name=prop).camelCase] 371 kw["templates"] = [Template(name=name, namespace=namespace)] 438 namespace=["functor"], 439 templates=[Template(name=dbusMember, namespace=[])], [all …]
|
/openbmc/linux/Documentation/admin-guide/namespaces/ |
H A D | compatibility-list.rst | 9 occur when tasks share some namespace (the columns) while living 28 other task living in a different namespace via a shared filesystem 30 within the namespace it was obtained in and may refer to some 31 other object in another namespace. 35 words, user 10 in one user namespace shouldn't have the same 37 namespace.
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/ |
H A D | mod_hdr.h | 31 char *mlx5e_mod_hdr_alloc(struct mlx5_core_dev *mdev, int namespace, 39 enum mlx5_flow_namespace_type namespace, 49 static inline int mlx5e_mod_hdr_max_actions(struct mlx5_core_dev *mdev, int namespace) in mlx5e_mod_hdr_max_actions() argument 51 if (namespace == MLX5_FLOW_NAMESPACE_FDB) /* FDB offloading */ in mlx5e_mod_hdr_max_actions()
|
/openbmc/linux/Documentation/admin-guide/LSM/ |
H A D | SafeSetID.rst | 8 allowing a user to set up user namespace UID/GID mappings. 40 namespace). The higher level goal is to allow for uid-based sandboxing of system 69 namespace and give programs in the tree setid capabilities. In this way, 71 own user namespace, and only approved UIDs/GIDs could be mapped back to the 72 initial system user namespace, affectively preventing privilege escalation. 74 without pairing them with other namespace types, which is not always an option. 75 Linux checks for capabilities based off of the user namespace that "owns" some 77 the user namespace in which they were created. A consequence of this is that 78 capability checks for access to a given network namespace are done by checking 79 whether a task has the given capability in the context of the user namespace [all …]
|
/openbmc/linux/Documentation/driver-api/acpi/ |
H A D | scan_handlers.rst | 12 During system initialization and ACPI-based device hot-add, the ACPI namespace 15 registered with the driver core for every device object in the ACPI namespace 16 and the hierarchy of those struct acpi_device objects reflects the namespace 17 layout (i.e. parent device objects in the namespace are represented by parent 26 The core ACPI namespace scanning code in drivers/acpi/scan.c carries out basic 54 The namespace scanning function, acpi_bus_scan(), first registers all of the 55 device nodes in the given namespace scope with the driver core. Then, it tries 68 the namespace scan should be terminated due to a serious error. The error code 71 The namespace trimming function, acpi_bus_trim(), first executes .detach() 72 callbacks from the scan handlers of all device nodes in the given namespace [all …]
|
/openbmc/sdbusplus/tools/sdbusplus/templates/ |
H A D | events.hpp.mako | 19 namespace sdbusplus::error::${events.cppNamespacedClass()} 26 } // namespace sdbusplus::error::${events.cppNamespacedClass()} 30 namespace sdbusplus::event::${events.cppNamespacedClass()} 37 } // namespace sdbusplus::event::${events.cppNamespacedClass()}
|
H A D | events.cpp.mako | 7 namespace sdbusplus::error::${events.cppNamespacedClass()} 26 } // namespace sdbusplus::error::${events.cppNamespacedClass()} 31 namespace sdbusplus::event::${events.cppNamespacedClass()} 38 } // namespace sdbusplus::event::${events.cppNamespacedClass()}
|
H A D | error.hpp.mako | 7 namespace ${error.namespaces} 42 } // namespace ${error.namespaces} 45 namespace ${error.old_namespaces} 50 } // namespace ${error.old_namespaces}
|
H A D | interface.client.hpp.mako | 12 namespace sdbusplus::client::${interface.cppNamespace()} 15 namespace details 20 } // namespace details 43 namespace details 118 } // namespace details 120 } // namespace sdbusplus::client::${interface.cppNamespace()}
|
H A D | interface.aserver.hpp.mako | 13 namespace sdbusplus::aserver::${interface.cppNamespace()} 16 namespace details 21 } // namespace details 39 namespace details 42 namespace server_details = sdbusplus::async::server::details; 139 } // namespace details 140 } // namespace sdbusplus::aserver::${interface.cppNamespace()}
|
/openbmc/boost-dbus/include/dbus/impl/ |
H A D | filter.ipp | 9 namespace dbus { 10 namespace impl { 27 } // namespace impl 37 } // namespace dbus
|
/openbmc/linux/Documentation/driver-api/nvdimm/ |
H A D | nvdimm.rst | 36 libnvdimm: namespace 37 libndctl: namespace enumeration example 38 libndctl: namespace creation example 39 Why the Term "namespace"? 85 the namespace. Note that traditional partition tables, GPT/MBR, are 86 layered on top of a PMEM namespace, or an address abstraction like BTT 140 namespace label index block is found), then no block device is created 181 single PMEM namespace is created in the REGION0-SPA-range that spans most 184 another PMEM namespace to be defined. 188 well as DIMM2 and DIMM3. Some of REGION1 is allocated to a PMEM namespace [all …]
|
/openbmc/linux/tools/testing/selftests/tc-testing/plugin-lib/ |
H A D | nsPlugin.py | 19 if self.args.namespace: 30 if self.args.namespace: 50 if not self.args.namespace: 85 if not self.args.namespace: 99 if self.args.namespace: 117 if self.args.namespace:
|