Searched defs:path (Results 1 - 25 of 115) sorted by relevance

12345

/drivers/staging/rts5208/
H A Dtrace.h30 static inline char *filename(char *path) argument
34 if (path == NULL)
37 ptr = path;
41 path = ptr + 1;
46 return path;
/drivers/acpi/acpica/
H A Ddswload.c147 char *path; local
172 path = acpi_ps_get_next_namestring(&walk_state->parser_state);
190 acpi_ns_lookup(walk_state->scope_info, path, object_type,
200 acpi_dm_add_op_to_external_list(op, path,
203 acpi_ns_lookup(walk_state->scope_info, path,
210 ACPI_ERROR_NAMESPACE(path, status);
335 acpi_ns_lookup(walk_state->scope_info, path, object_type,
369 ACPI_ERROR_NAMESPACE(path, status);
391 op->named.path = ACPI_CAST_PTR(u8, path);
[all...]
H A Ddsfield.c61 char *path,
78 * path - Pathname of the region
92 char *path,
108 acpi_dm_add_op_to_external_list(op, path, ACPI_TYPE_REGION, 0, 0);
109 status = acpi_ns_lookup(walk_state->scope_info, path, ACPI_TYPE_REGION,
90 acpi_ds_create_external_region(acpi_status lookup_status, union acpi_parse_object *op, char *path, struct acpi_walk_state *walk_state, struct acpi_namespace_node **node) argument
H A Dnsaccess.c289 char *path = pathname; local
359 path = "";
378 if (*path == (u8) AML_ROOT_PREFIX) {
387 path++;
406 while (*path == (u8) AML_PARENT_PREFIX) {
416 path++;
436 "Search scope is [%4.4s], path has %u carat(s)\n",
455 switch (*path) {
478 path++;
493 path
[all...]
H A Duterror.c189 * internal_name - Name or path of the namespace node
218 /* Convert path to external format */
250 * prefix_node - Prefix relative to the path
251 * path - Path to the node (optional)
265 const char *path, acpi_status method_status)
273 if (path) {
275 acpi_ns_get_node(prefix_node, path, ACPI_NS_NO_UPSEARCH,
261 acpi_ut_method_error(const char *module_name, u32 line_number, const char *message, struct acpi_namespace_node *prefix_node, const char *path, acpi_status method_status) argument
H A Duteval.c56 * path - Path to object from starting node
72 char *path,
90 info->relative_pathname = path;
100 path));
103 prefix_node, path, status);
114 prefix_node, path, AE_NOT_EXIST);
165 prefix_node, path, AE_TYPE);
169 path,
71 acpi_ut_evaluate_object(struct acpi_namespace_node *prefix_node, char *path, u32 expected_return_btypes, union acpi_operand_object **return_desc) argument
H A Dnsxfname.c109 * Error for <null Parent + relative path>
124 /* Relative path with null prefix is disallowed */
148 * buffer - Buffer for returned path
538 char *path; local
572 path = acpi_ps_get_next_namestring(&parser_state);
602 acpi_ns_lookup(NULL, path, ACPI_TYPE_METHOD, ACPI_IMODE_LOAD_PASS1,
H A Dpsargs.c169 /* Decode the path prefix character */
235 char *path; local
243 path = acpi_ps_get_next_namestring(parser_state);
246 /* Null path case is allowed, just exit */
248 if (!path) {
249 arg->common.value.name = path;
261 status = acpi_ns_lookup(walk_state->scope_info, path,
288 method_desc, path));
298 name_op->common.value.name = path;
359 ACPI_ERROR_NAMESPACE(path, statu
[all...]
H A Dutmisc.c348 * path - Additional path string to be appended.
349 * (NULL if no extra path)
360 char *path)
367 /* Only print the path if the appropriate debug level is enabled */
400 /* Extra path is used to append names like _STA, _INI, etc. */
402 if (path) {
403 acpi_os_printf(".%s", path);
358 acpi_ut_display_init_pathname(u8 type, struct acpi_namespace_node *obj_handle, char *path) argument
H A Drsutils.c657 * path - Path to method, relative to Handle
673 char *path, struct acpi_buffer *ret_buffer)
686 (struct acpi_namespace_node, handle), path,
672 acpi_rs_get_method_data(acpi_handle handle, char *path, struct acpi_buffer *ret_buffer) argument
/drivers/md/
H A Ddm-uevent.h35 struct dm_target *ti, const char *path,
52 struct dm_target *ti, const char *path,
51 dm_path_uevent(enum dm_uevent_type event_type, struct dm_target *ti, const char *path, unsigned nr_valid_paths) argument
H A Dmultipath.h28 int path; member in struct:multipath_bh
H A Ddm-round-robin.c9 * Round-robin path selector.
14 #include "dm-path-selector.h"
26 struct dm_path *path; member in struct:path_info
85 static int rr_status(struct path_selector *ps, struct dm_path *path, argument
91 if (!path)
98 pi = path->pscontext;
108 * Called during initialisation to register each path with an
111 static int rr_add_path(struct path_selector *ps, struct dm_path *path, argument
124 /* First path argument is number of I/Os before switching path */
[all...]
H A Ddm-uevent.c75 const char *path,
107 if (add_uevent_var(&event->ku_env, "DM_PATH=%s", path)) {
175 * dm_path_uevent - called to create a new path event and queue it
177 * @event_type: path event type enum
179 * @path: string containing pathname
184 const char *path, unsigned nr_valid_paths)
197 path, nr_valid_paths);
71 dm_build_path_uevent(struct mapped_device *md, struct dm_target *ti, enum kobject_action action, const char *dm_action, const char *path, unsigned nr_valid_paths) argument
183 dm_path_uevent(enum dm_uevent_type event_type, struct dm_target *ti, const char *path, unsigned nr_valid_paths) argument
/drivers/thunderbolt/
H A Dpath.c2 * Thunderbolt Cactus Ridge driver - path/tunnel functionality
31 * tb_path_alloc() - allocate a thunderbolt path
37 struct tb_path *path = kzalloc(sizeof(*path), GFP_KERNEL); local
38 if (!path)
40 path->hops = kcalloc(num_hops, sizeof(*path->hops), GFP_KERNEL);
41 if (!path->hops) {
42 kfree(path);
45 path
53 tb_path_free(struct tb_path *path) argument
63 __tb_path_deallocate_nfc(struct tb_path *path, int first_hop) argument
76 __tb_path_deactivate_hops(struct tb_path *path, int first_hop) argument
90 tb_path_deactivate(struct tb_path *path) argument
115 tb_path_activate(struct tb_path *path) argument
224 tb_path_is_invalid(struct tb_path *path) argument
[all...]
H A Dtunnel_pci.c31 static void tb_pci_init_path(struct tb_path *path) argument
33 path->egress_fc_enable = TB_PATH_SOURCE | TB_PATH_INTERNAL;
34 path->egress_shared_buffer = TB_PATH_NONE;
35 path->ingress_fc_enable = TB_PATH_ALL;
36 path->ingress_shared_buffer = TB_PATH_NONE;
37 path->priority = 3;
38 path->weight = 1;
39 path->drop_packages = 0;
40 path->nfc_credits = 0;
53 * my thunderbolt devices). Therefore at most ONE path pe
[all...]
/drivers/video/fbdev/mmp/
H A Dcore.c28 static struct mmp_overlay *path_get_overlay(struct mmp_path *path, argument
31 if (path && overlay_id < path->overlay_num)
32 return &path->overlays[overlay_id];
36 static int path_check_status(struct mmp_path *path) argument
39 for (i = 0; i < path->overlay_num; i++)
40 if (path->overlays[i].status)
53 static int path_get_modelist(struct mmp_path *path, argument
56 BUG_ON(!path || !modelist);
58 if (path
86 struct mmp_path *path; local
116 struct mmp_path *path; local
142 struct mmp_path *path; local
169 struct mmp_path *path = NULL; local
231 mmp_unregister_path(struct mmp_path *path) argument
[all...]
/drivers/video/fbdev/mmp/fb/
H A Dmmpfb.h45 struct mmp_path *path; member in struct:mmpfb_info
/drivers/infiniband/hw/ehca/
H A Dehca_av.c55 int path = ib_rate_to_mult(path_rate); local
64 if (unlikely(path < 0)) {
78 if (path >= link)
79 /* no need to throttle if path faster than link */
82 /* IPD = round((link / path) - 1) */
83 *ipd = ((link + (path >> 1)) / path) - 1;
/drivers/s390/net/
H A Dsmsgiucv.c60 static int smsg_path_pending(struct iucv_path *path, u8 ipvmid[8], argument
66 return iucv_path_accept(path, &smsg_handler, "SMSGIUCV ", NULL);
69 static void smsg_message_pending(struct iucv_path *path, argument
79 iucv_message_reject(path, msg);
82 rc = iucv_message_receive(path, msg, 0, buffer, msg->length, NULL);
/drivers/base/
H A Ddevtmpfs.c153 struct path path; local
156 dentry = kern_path_create(AT_FDCWD, name, &path, LOOKUP_DIRECTORY);
160 err = vfs_mkdir(path.dentry->d_inode, dentry, mode);
164 done_path_create(&path, dentry);
170 char *path; local
175 path = kstrdup(nodepath, GFP_KERNEL);
176 if (!path)
179 s = path;
185 err = dev_mkdir(path, 075
199 struct path path; local
254 const char *path; local
[all...]
/drivers/gpu/drm/nouveau/core/core/
H A Dioctl.c460 u32 *path, void *data, u32 size,
469 nv_ioctl(object, "path 0x%08x\n", path[nr]);
471 nv_debug(object, "cannot have children (path)\n");
476 !(handle = nouveau_namedb_get(namedb, path[nr]))) {
477 nv_debug(object, "handle 0x%08x not found\n", path[nr]);
514 nv_ioctl(client, "vers %d type %02x path %d owner %02x\n",
518 args->v0.path_nr, args->v0.path,
459 nvkm_ioctl_path(struct nouveau_handle *parent, u32 type, u32 nr, u32 *path, void *data, u32 size, u8 owner, u8 *route, u64 *token) argument
/drivers/gpu/drm/nouveau/core/engine/perfmon/
H A Dbase.c41 char path[64]; local
52 snprintf(path, sizeof(path), "/%s/%02x", dom->name, i);
53 if (!strncmp(name, path, size))
/drivers/gpu/drm/nouveau/core/include/nvif/
H A Dioctl.h29 __u32 path[8]; /* in reverse */ member in struct:nvif_ioctl_v0
/drivers/gpu/drm/nouveau/nvif/
H A Dioctl.h29 __u32 path[8]; /* in reverse */ member in struct:nvif_ioctl_v0

Completed in 8998 milliseconds

12345