Home
last modified time | relevance | path

Searched refs:parent (Results 901 - 925 of 11658) sorted by relevance

1...<<31323334353637383940>>...467

/third_party/typescript/lib/
H A Dtsserver.js8170 function containsPath(parent, child, currentDirectory, ignoreCase) {
8172 parent = combinePaths(currentDirectory, parent);
8178 if (parent === undefined || child === undefined)
8180 if (parent === child)
8182 var parentComponents = reducePathComponents(getPathComponents(parent));
9000 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9310 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
H A Dtypescript.js8160 function containsPath(parent, child, currentDirectory, ignoreCase) {
8162 parent = combinePaths(currentDirectory, parent);
8168 if (parent === undefined || child === undefined)
8170 if (parent === child)
8172 var parentComponents = reducePathComponents(getPathComponents(parent));
8990 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9300 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
H A DtypescriptServices.js8160 function containsPath(parent, child, currentDirectory, ignoreCase) {
8162 parent = combinePaths(currentDirectory, parent);
8168 if (parent === undefined || child === undefined)
8170 if (parent === child)
8172 var parentComponents = reducePathComponents(getPathComponents(parent));
8990 JSX_expressions_must_have_one_parent_element: diag(2657, ts.DiagnosticCategory.Error, "JSX_expressions_must_have_one_parent_element_2657", "JSX expressions must have one parent element."),
9300 File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0: diag(5065, ts.DiagnosticCategory.Error, "File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065", "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),
[all...]
/kernel/linux/linux-5.10/arch/powerpc/kernel/
H A Dlegacy_serial.c387 struct device_node *parent = of_get_parent(np); in find_legacy_serial_ports() local
388 if (!parent) in find_legacy_serial_ports()
390 if (of_match_node(legacy_serial_parents, parent) != NULL) { in find_legacy_serial_ports()
397 of_node_put(parent); in find_legacy_serial_ports()
416 struct device_node *pci, *parent = of_get_parent(np); in find_legacy_serial_ports() local
417 if (of_node_name_eq(parent, "isa")) { in find_legacy_serial_ports()
418 of_node_put(parent); in find_legacy_serial_ports()
423 of_node_put(parent); in find_legacy_serial_ports()
432 else if (of_device_is_compatible(parent, "pciclass,0700") || in find_legacy_serial_ports()
433 of_device_is_compatible(parent, "pciclas in find_legacy_serial_ports()
[all...]
/kernel/linux/linux-5.10/drivers/base/
H A Dclass.c434 struct class *parent; in class_interface_register() local
441 parent = class_get(class_intf->class); in class_interface_register()
442 if (!parent) in class_interface_register()
445 mutex_lock(&parent->p->mutex); in class_interface_register()
446 list_add_tail(&class_intf->node, &parent->p->interfaces); in class_interface_register()
448 class_dev_iter_init(&iter, parent, NULL, NULL); in class_interface_register()
453 mutex_unlock(&parent->p->mutex); in class_interface_register()
460 struct class *parent = class_intf->class; in class_interface_unregister() local
464 if (!parent) in class_interface_unregister()
467 mutex_lock(&parent in class_interface_unregister()
[all...]
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H A Dlegacy_serial.c415 struct device_node *parent = of_get_parent(np); in find_legacy_serial_ports() local
416 if (!parent) in find_legacy_serial_ports()
418 if (of_match_node(legacy_serial_parents, parent) != NULL) { in find_legacy_serial_ports()
425 of_node_put(parent); in find_legacy_serial_ports()
444 struct device_node *pci, *parent = of_get_parent(np); in find_legacy_serial_ports() local
445 if (of_node_name_eq(parent, "isa")) { in find_legacy_serial_ports()
446 of_node_put(parent); in find_legacy_serial_ports()
451 of_node_put(parent); in find_legacy_serial_ports()
460 else if (of_device_is_compatible(parent, "pciclass,0700") || in find_legacy_serial_ports()
461 of_device_is_compatible(parent, "pciclas in find_legacy_serial_ports()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/
H A Ddrm_drv.c578 struct device *parent) in drm_dev_init()
588 if (WARN_ON(!parent)) in drm_dev_init()
592 dev->dev = get_device(parent); in drm_dev_init()
650 ret = drm_dev_set_unique(dev, dev_name(parent)); in drm_dev_init()
667 static int devm_drm_dev_init(struct device *parent, in devm_drm_dev_init() argument
673 ret = drm_dev_init(dev, driver, parent); in devm_drm_dev_init()
677 ret = devm_add_action(parent, devm_drm_dev_init_release, dev); in devm_drm_dev_init()
684 void *__devm_drm_dev_alloc(struct device *parent, struct drm_driver *driver, in __devm_drm_dev_alloc() argument
696 ret = devm_drm_dev_init(parent, drm, driver); in __devm_drm_dev_alloc()
710 * @parent
576 drm_dev_init(struct drm_device *dev, struct drm_driver *driver, struct device *parent) drm_dev_init() argument
719 drm_dev_alloc(struct drm_driver *driver, struct device *parent) drm_dev_alloc() argument
[all...]
/kernel/linux/linux-5.10/drivers/phy/intel/
H A Dphy-intel-lgm-combo.c37 #define COMBO_PHY_ID(x) ((x)->parent->id)
81 struct intel_combo_phy *parent; member
107 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_enable()
120 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_pcie_refclk_cfg()
144 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_cfg()
159 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_pcie_en_pad_refclk()
182 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_pcie_dis_pad_refclk()
254 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_power_on()
304 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_power_off()
332 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_init()
[all...]
/kernel/linux/linux-5.10/drivers/usb/core/
H A Dport.c194 struct usb_device *hdev = to_usb_device(dev->parent->parent); in usb_port_runtime_resume()
195 struct usb_interface *intf = to_usb_interface(dev->parent); in usb_port_runtime_resume()
253 struct usb_device *hdev = to_usb_device(dev->parent->parent); in usb_port_runtime_suspend()
254 struct usb_interface *intf = to_usb_interface(dev->parent); in usb_port_runtime_suspend()
451 struct usb_device *hdev = to_usb_device(port_dev->dev.parent->parent); in match_location()
495 } else if (!hdev->parent) { in find_and_link_peer()
505 struct usb_device *parent in find_and_link_peer() local
[all...]
/kernel/linux/linux-5.10/fs/notify/
H A Dfsnotify.c105 * parent cares. Thus when an event happens on a child it can quickly tell if
106 * if there is a need to find a parent and send the event to the parent.
126 * d_flags to indicate parental interest (their parent is the in __fsnotify_update_child_dentry_flags()
145 /* Are inode/sb/mount interested in parent and name info with this event? */
151 /* We only send parent/name to inode/sb/mount for events on non-dir */ in fsnotify_event_needs_parent()
157 * parent/name info to inode/sb/mount. Otherwise, a watching parent in fsnotify_event_needs_parent()
162 /* Did either inode/sb/mount subscribe for events with parent/name? */ in fsnotify_event_needs_parent()
168 /* Did they subscribe for this event with parent/nam in fsnotify_event_needs_parent()
186 struct dentry *parent; __fsnotify_parent() local
469 struct inode *parent = NULL; fsnotify() local
[all...]
/kernel/linux/linux-5.10/fs/orangefs/
H A Dnamei.c23 struct orangefs_inode_s *parent = ORANGEFS_I(dir); in orangefs_create() local
38 new_op->upcall.req.create.parent_refn = parent->refn; in orangefs_create()
101 * Attempt to resolve an object name (dentry->d_name), parent handle, and
107 struct orangefs_inode_s *parent = ORANGEFS_I(dir); in orangefs_lookup() local
132 gossip_debug(GOSSIP_NAME_DEBUG, "%s:%s:%d using parent %pU\n", in orangefs_lookup()
136 &parent->refn.khandle); in orangefs_lookup()
137 new_op->upcall.req.lookup.parent_refn = parent->refn; in orangefs_lookup()
175 struct orangefs_inode_s *parent = ORANGEFS_I(dir); in orangefs_unlink() local
186 &parent->refn.khandle, in orangefs_unlink()
187 parent in orangefs_unlink()
222 struct orangefs_inode_s *parent = ORANGEFS_I(dir); orangefs_symlink() local
308 struct orangefs_inode_s *parent = ORANGEFS_I(dir); orangefs_mkdir() local
[all...]
/kernel/linux/linux-5.10/fs/ubifs/
H A Dtnc_misc.c57 while (znode->parent != zr && iip >= znode->parent->child_cnt) { in ubifs_tnc_levelorder_next()
58 znode = znode->parent; in ubifs_tnc_levelorder_next()
62 if (unlikely(znode->parent == zr && in ubifs_tnc_levelorder_next()
63 iip >= znode->parent->child_cnt)) { in ubifs_tnc_levelorder_next()
82 zn = ubifs_tnc_find_child(znode->parent, iip + 1); in ubifs_tnc_levelorder_next()
85 iip = znode->parent->child_cnt; in ubifs_tnc_levelorder_next()
200 if (unlikely(!znode->parent)) in ubifs_tnc_postorder_next()
203 /* Switch to the next index in the parent */ in ubifs_tnc_postorder_next()
204 zn = ubifs_tnc_find_child(znode->parent, znod in ubifs_tnc_postorder_next()
409 ubifs_load_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr, struct ubifs_znode *parent, int iip) ubifs_load_znode() argument
[all...]
/kernel/linux/linux-6.6/drivers/mmc/core/
H A Dhost.c78 if (of_alias_get_id(host->parent->of_node, "mmc") < 0) in mmc_host_classdev_release()
240 struct device *dev = host->parent; in mmc_of_parse_clk_phase()
278 struct device *dev = host->parent; in mmc_of_parse()
287 dev_dbg(host->parent, in mmc_of_parse()
302 dev_err(host->parent, in mmc_of_parse()
340 dev_info(host->parent, "Got CD GPIO\n"); in mmc_of_parse()
352 dev_info(host->parent, "Got WP GPIO\n"); in mmc_of_parse()
419 dev_err(host->parent, in mmc_of_parse()
425 dev_err(host->parent, in mmc_of_parse()
451 struct device *dev = host->parent; in mmc_of_parse_voltage()
[all...]
/kernel/linux/linux-6.6/fs/ubifs/
H A Dtnc_misc.c57 while (znode->parent != zr && iip >= znode->parent->child_cnt) { in ubifs_tnc_levelorder_next()
58 znode = znode->parent; in ubifs_tnc_levelorder_next()
62 if (unlikely(znode->parent == zr && in ubifs_tnc_levelorder_next()
63 iip >= znode->parent->child_cnt)) { in ubifs_tnc_levelorder_next()
82 zn = ubifs_tnc_find_child(znode->parent, iip + 1); in ubifs_tnc_levelorder_next()
85 iip = znode->parent->child_cnt; in ubifs_tnc_levelorder_next()
200 if (unlikely(!znode->parent)) in ubifs_tnc_postorder_next()
203 /* Switch to the next index in the parent */ in ubifs_tnc_postorder_next()
204 zn = ubifs_tnc_find_child(znode->parent, znod in ubifs_tnc_postorder_next()
409 ubifs_load_znode(struct ubifs_info *c, struct ubifs_zbranch *zbr, struct ubifs_znode *parent, int iip) ubifs_load_znode() argument
[all...]
/kernel/linux/linux-6.6/fs/orangefs/
H A Dnamei.c24 struct orangefs_inode_s *parent = ORANGEFS_I(dir); in orangefs_create() local
39 new_op->upcall.req.create.parent_refn = parent->refn; in orangefs_create()
102 * Attempt to resolve an object name (dentry->d_name), parent handle, and
108 struct orangefs_inode_s *parent = ORANGEFS_I(dir); in orangefs_lookup() local
133 gossip_debug(GOSSIP_NAME_DEBUG, "%s:%s:%d using parent %pU\n", in orangefs_lookup()
137 &parent->refn.khandle); in orangefs_lookup()
138 new_op->upcall.req.lookup.parent_refn = parent->refn; in orangefs_lookup()
176 struct orangefs_inode_s *parent = ORANGEFS_I(dir); in orangefs_unlink() local
187 &parent->refn.khandle, in orangefs_unlink()
188 parent in orangefs_unlink()
224 struct orangefs_inode_s *parent = ORANGEFS_I(dir); orangefs_symlink() local
311 struct orangefs_inode_s *parent = ORANGEFS_I(dir); orangefs_mkdir() local
[all...]
/kernel/linux/linux-6.6/drivers/powercap/
H A Darm_scmi_powercap.c298 struct scmi_powercap_zone *parent) in scmi_powercap_register_zone()
309 parent ? &parent->zone : NULL, in scmi_powercap_register_zone()
315 dev_dbg(spz->dev, "Registered node %s - parent %s - height:%d\n", in scmi_powercap_register_zone()
316 spz->info->name, parent ? parent->info->name : "ROOT", in scmi_powercap_register_zone()
322 "Error registering node:%s - parent:%s - h:%d - ret:%d\n", in scmi_powercap_register_zone()
324 parent ? parent->info->name : "ROOT", in scmi_powercap_register_zone()
332 * scmi_zones_register- Register SCMI powercap zones starting from parent zone
296 scmi_powercap_register_zone(struct scmi_powercap_root *pr, struct scmi_powercap_zone *spz, struct scmi_powercap_zone *parent) scmi_powercap_register_zone() argument
380 struct scmi_powercap_zone *parent; scmi_zones_register() local
[all...]
/kernel/linux/linux-6.6/drivers/clk/at91/
H A Dclk-peripheral.c140 struct clk_hw *parent; in clk_sam9x5_peripheral_autodiv() local
148 parent = clk_hw_get_parent_by_index(&periph->hw, 0); in clk_sam9x5_peripheral_autodiv()
149 parent_rate = clk_hw_get_rate(parent); in clk_sam9x5_peripheral_autodiv()
255 struct clk_hw *parent, in clk_sam9x5_peripheral_best_diff()
267 req->best_parent_hw = parent; in clk_sam9x5_peripheral_best_diff()
275 struct clk_hw *parent = clk_hw_get_parent(hw); in clk_sam9x5_peripheral_determine_rate() local
276 unsigned long parent_rate = clk_hw_get_rate(parent); in clk_sam9x5_peripheral_determine_rate()
292 clk_sam9x5_peripheral_best_diff(req, parent, parent_rate, in clk_sam9x5_peripheral_determine_rate()
302 /* Step two: try to request rate from parent. */ in clk_sam9x5_peripheral_determine_rate()
303 parent in clk_sam9x5_peripheral_determine_rate()
254 clk_sam9x5_peripheral_best_diff(struct clk_rate_request *req, struct clk_hw *parent, unsigned long parent_rate, u32 shift, long *best_diff, long *best_rate) clk_sam9x5_peripheral_best_diff() argument
[all...]
/kernel/linux/linux-6.6/drivers/phy/intel/
H A Dphy-intel-lgm-combo.c37 #define COMBO_PHY_ID(x) ((x)->parent->id)
81 struct intel_combo_phy *parent; member
107 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_enable()
120 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_pcie_refclk_cfg()
144 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_cfg()
159 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_pcie_en_pad_refclk()
182 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_pcie_dis_pad_refclk()
254 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_power_on()
304 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_iphy_power_off()
332 struct intel_combo_phy *cbphy = iphy->parent; in intel_cbphy_init()
[all...]
/kernel/linux/linux-6.6/drivers/irqchip/
H A Dirq-imx-mu-msi.c222 struct irq_domain *parent; in imx_mu_msi_domains_init() local
224 /* Initialize MSI domain parent */ in imx_mu_msi_domains_init()
225 parent = irq_domain_create_linear(fwnodes, in imx_mu_msi_domains_init()
229 if (!parent) { in imx_mu_msi_domains_init()
234 irq_domain_update_bus_token(parent, DOMAIN_BUS_NEXUS); in imx_mu_msi_domains_init()
238 parent); in imx_mu_msi_domains_init()
242 irq_domain_remove(parent); in imx_mu_msi_domains_init()
307 struct device_node *parent, in imx_mu_of_init()
427 struct device_node *parent) in imx_mu_imx7ulp_of_init()
429 return imx_mu_of_init(dn, parent, in imx_mu_imx7ulp_of_init()
306 imx_mu_of_init(struct device_node *dn, struct device_node *parent, const struct imx_mu_dcfg *cfg) imx_mu_of_init() argument
426 imx_mu_imx7ulp_of_init(struct device_node *dn, struct device_node *parent) imx_mu_imx7ulp_of_init() argument
432 imx_mu_imx6sx_of_init(struct device_node *dn, struct device_node *parent) imx_mu_imx6sx_of_init() argument
438 imx_mu_imx8ulp_of_init(struct device_node *dn, struct device_node *parent) imx_mu_imx8ulp_of_init() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dframesync.c53 .parent_log_context_offset = OFFSET(parent),
79 int ff_framesync_init(FFFrameSync *fs, AVFilterContext *parent, unsigned nb_in) in ff_framesync_init() argument
84 av_assert0(parent->nb_outputs == 1); in ff_framesync_init()
87 fs->parent = parent; in ff_framesync_init()
100 ff_outlink_set_status(fs->parent->outputs[0], AVERROR_EOF, AV_NOPTS_VALUE); in framesync_eof()
299 AVFilterContext *ctx = fs->parent; in consume_from_fifos()
353 int ff_framesync_init_dualinput(FFFrameSync *fs, AVFilterContext *parent) in ff_framesync_init_dualinput() argument
357 ret = ff_framesync_init(fs, parent, 2); in ff_framesync_init_dualinput()
360 fs->in[0].time_base = parent in ff_framesync_init_dualinput()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_find_array_copies.c88 node_for_deref(nir_deref_instr *instr, struct match_node *parent, in node_for_deref() argument
118 idx = parent->num_children - 1; in node_for_deref()
124 assert(idx < parent->num_children - 1); in node_for_deref()
126 idx = parent->num_children - 1; in node_for_deref()
138 assert(idx < parent->num_children); in node_for_deref()
139 if (parent->children[idx]) { in node_for_deref()
140 return parent->children[idx]; in node_for_deref()
143 parent->children[idx] = node; in node_for_deref()
149 node_for_wildcard(const struct glsl_type *type, struct match_node *parent, in node_for_wildcard() argument
155 if (parent in node_for_wildcard()
[all...]
/third_party/skia/src/pathops/
H A DSkPathOpsAsWinding.cpp277 void inParent(Contour& contour, Contour& parent) {
278 // move contour into sibling list contained by parent
279 for (auto test : parent.fChildren) {
285 // move parent's children into contour's children if contained by contour
286 for (auto iter = parent.fChildren.begin(); iter != parent.fChildren.end(); ) {
289 iter = parent.fChildren.erase(iter);
294 parent.fChildren.push_back(&contour);
297 bool checkContainerChildren(Contour* parent, Contour* child) {
303 if (parent) {
[all...]
/kernel/linux/linux-5.10/drivers/acpi/
H A Dproperty.c61 struct fwnode_handle *parent);
69 struct fwnode_handle *parent) in acpi_nondev_subnode_extract()
80 dn->parent = parent; in acpi_nondev_subnode_extract()
94 * object's parent. in acpi_nondev_subnode_extract()
121 struct fwnode_handle *parent) in acpi_nondev_subnode_data_ok()
132 parent)) in acpi_nondev_subnode_data_ok()
142 struct fwnode_handle *parent) in acpi_nondev_subnode_ok()
155 return acpi_nondev_subnode_data_ok(handle, link, list, parent); in acpi_nondev_subnode_ok()
161 struct fwnode_handle *parent) in acpi_add_nondev_subnodes()
65 acpi_nondev_subnode_extract(const union acpi_object *desc, acpi_handle handle, const union acpi_object *link, struct list_head *list, struct fwnode_handle *parent) acpi_nondev_subnode_extract() argument
118 acpi_nondev_subnode_data_ok(acpi_handle handle, const union acpi_object *link, struct list_head *list, struct fwnode_handle *parent) acpi_nondev_subnode_data_ok() argument
139 acpi_nondev_subnode_ok(acpi_handle scope, const union acpi_object *link, struct list_head *list, struct fwnode_handle *parent) acpi_nondev_subnode_ok() argument
158 acpi_add_nondev_subnodes(acpi_handle scope, const union acpi_object *links, struct list_head *list, struct fwnode_handle *parent) acpi_add_nondev_subnodes() argument
206 acpi_enumerate_nondev_subnodes(acpi_handle scope, const union acpi_object *desc, struct acpi_device_data *data, struct fwnode_handle *parent) acpi_enumerate_nondev_subnodes() argument
1343 struct fwnode_handle *parent; acpi_fwnode_get_name() local
1368 struct fwnode_handle *parent; acpi_fwnode_get_name_prefix() local
[all...]
/kernel/linux/linux-5.10/kernel/
H A Duser_namespace.c95 /* The creator needs a mapping in the parent user namespace in create_user_ns()
117 ns->parent = parent_ns; in create_user_ns()
127 /* Inherit USERNS_SETGROUPS_ALLOWED from our parent */ in create_user_ns()
177 struct user_namespace *parent, *ns = in free_user_ns() local
182 parent = ns->parent; in free_user_ns()
200 ns = parent; in free_user_ns()
201 } while (atomic_dec_and_test(&parent->count)); in free_user_ns()
586 if ((lower_ns == ns) && lower_ns->parent) in uid_m_show()
587 lower_ns = lower_ns->parent; in uid_m_show()
[all...]
/kernel/linux/linux-6.6/kernel/
H A Duser_namespace.c108 /* The creator needs a mapping in the parent user namespace in create_user_ns()
134 ns->parent = parent_ns; in create_user_ns()
148 /* Inherit USERNS_SETGROUPS_ALLOWED from our parent */ in create_user_ns()
198 struct user_namespace *parent, *ns = in free_user_ns() local
203 parent = ns->parent; in free_user_ns()
221 ns = parent; in free_user_ns()
222 } while (refcount_dec_and_test(&parent->ns.count)); in free_user_ns()
607 if ((lower_ns == ns) && lower_ns->parent) in uid_m_show()
608 lower_ns = lower_ns->parent; in uid_m_show()
[all...]

Completed in 90 milliseconds

1...<<31323334353637383940>>...467