Searched refs:path (Results 1 - 16 of 16) sorted by relevance

/scripts/
H A Dmkuboot.sh7 MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")
10 MKIMAGE=$(type -path mkimage)
H A Dheaderdep.pl80 my $path = "$i/$filename";
81 return $path if -f $path;
95 my $path = search($header);
96 next unless $path;
98 open(my $file, '<', $path) or die($!);
H A Dheaders_check.pl106 my $path = $_[0];
110 my @file_paths = ($path, $dir . "/" . $path, dirname($filename) . "/" . $path);
H A Dcheckpatch.pl499 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
500 if (-e "$path/$conf") {
501 return "$path/$conf";
1316 # See if any suffix of this path is a path within the tree.
2196 my $path = $1;
2197 if ($path =~ m{//}) {
H A Dget_maintainer.pl1152 foreach my $path (split(/:/, $ENV{PATH})) {
1153 if (-e "$path/$bin") {
1154 return "$path/$bin";
1164 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
1165 if (-e "$path/$conf") {
1166 return "$path/$conf";
/scripts/dtc/
H A Dutil.c37 char *join_path(const char *path, const char *name) argument
39 int lenp = strlen(path);
46 if ((lenp > 0) && (path[lenp-1] == '/')) {
52 memcpy(str, path, lenp);
H A Dutil.h54 extern char *join_path(const char *path, const char *name);
H A Dsrcpos.c28 static char *dirname(const char *path) argument
30 const char *slash = strrchr(path, '/');
33 int len = slash - path;
36 memcpy(dir, path, len);
H A Dlivetree.c351 struct node *get_node_by_path(struct node *tree, const char *path) argument
356 if (!path || ! (*path))
359 while (path[0] == '/')
360 path++;
362 p = strchr(path, '/');
365 if (p && strneq(path, child->name, p-path))
367 else if (!p && streq(path, child->name))
H A Dchecks.c459 char *path; local
471 path = refnode->fullpath;
472 prop->val = data_insert_at_marker(prop->val, m, path,
473 strlen(path) + 1);
H A Ddtc.h190 struct node *get_node_by_path(struct node *tree, const char *path);
H A Ddtc-parser.tab.c_shipped1472 print_error("label or path, '%s', not found", (yyvsp[(2) - (3)].labelref));
/scripts/kconfig/
H A Dgconf.c807 GtkTreePath *path = gtk_tree_path_new_from_string(path_string); local
813 if (!gtk_tree_model_get_iter(model2, &iter, path))
826 gtk_tree_path_free(path);
908 GtkTreePath *path; local
919 gtk_tree_view_get_path_at_pos(view, tx, ty, &path, &column, &cx,
922 gtk_tree_view_get_cursor(view, &path, &column);
924 if (path == NULL)
927 if (!gtk_tree_model_get_iter(model2, &iter, path))
943 gtk_tree_view_expand_row(view, path, TRUE);
948 gtk_tree_view_expand_row(view, path, TRU
965 GtkTreePath *path; local
1026 GtkTreePath *path; local
[all...]
H A Dconfdata.c776 char path[PATH_MAX+1]; local
842 d = path;
849 /* Assume directory path already exists. */
850 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
860 d = path;
863 if (stat(path, &sb) && mkdir(path, 0755)) {
870 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
/scripts/dtc/libfdt/
H A Dfdt_ro.c129 int fdt_path_offset(const void *fdt, const char *path) argument
131 const char *end = path + strlen(path);
132 const char *p = path;
137 if (*path != '/')
306 if (p > 1) /* special case so that root path is "/", not "" */
H A Dlibfdt.h78 /* FDT_ERR_BADPATH: Function was passed a badly formatted path
80 * absolute path) */
269 * such as a full path.
299 * fdt_path_offset - find a tree node by its full path
301 * @path: full path of the node to locate
303 * fdt_path_offset() finds a node of a given path in the device tree.
304 * Each path component may omit the unit address portion, but the
305 * results of this are undefined if any such path component is
311 * structure block offset of the node with the requested path (>
[all...]

Completed in 83 milliseconds