Home
last modified time | relevance | path

Searched refs:id (Results 1 – 12 of 12) sorted by relevance

/scripts/coccinelle/free/
Dput_device.cocci13 local idexpression id;
19 id = of_find_device_by_node@p1(x)
20 ... when != e = id
21 if (id == NULL || ...) { ... return ...; }
22 ... when != put_device(&id->dev)
23 when != platform_device_put(id)
24 when != of_dev_put(id)
25 when != if (id) { ... put_device(&id->dev) ... }
26 when != e1 = (T)id
27 when != e1 = (T)(&id->dev)
[all …]
Dpci_free_consistent.cocci14 local idexpression id;
20 id = pci_alloc_consistent@p1(x,y,&z)
21 ... when != e = id
22 if (id == NULL || ...) { ... return ...; }
23 ... when != pci_free_consistent(x,y,id,z)
24 when != if (id) { ... pci_free_consistent(x,y,id,z) ... }
25 when != if (y) { ... pci_free_consistent(x,y,id,z) ... }
26 when != e = (T)id
33 return id;
/scripts/
Dsetlocalversion128 if hgid=$(hg id 2>/dev/null); then
131 id=$(hg log -r . --template '{latesttag}')
132 printf '%s%s' -hg "$id"
136 id=$(printf '%s' "$hgid" | sed 's/[+ ].*//')
137 printf '%s%s' -hg "$id"
Dspdxcheck.py101 id = tok.value.upper()
103 if not id in self.spdx.licenses:
105 self.lastid = id
107 if id not in self.spdx.exceptions:
109 if self.lastid not in self.spdx.exceptions[id]:
Dkernel-doc1245 foreach my $id(split /,/, $ids) {
1246 $newmember .= "$maintype $id; ";
1248 $id =~ s/[:\[].*//;
1249 $id =~ s/^\s*\**(\S+)\s*/$1/;
1258 if ($id =~ m/^\s*$/) {
1262 $newmember .= "$type$id.$name$extra; ";
1290 if ($id =~ m/^\s*$/) {
1294 $newmember .= "$type $id.$name; ";
Dcheckpatch.pl1227 my ($commit, $id, $desc) = @_;
1229 return ($id, $desc) if ((which("git") eq "") || !(-e "$gitroot"));
1235 return ($id, $desc) if ($#lines < 0);
1249 $id = undef;
1251 $id = substr($lines[0], 0, 12);
1255 return ($id, $desc);
3196 my $id = "0123456789ab";
3223 my ($cid, $ctitle) = git_commit_info($orig_commit, $id,
3341 my $id = '0123456789ab';
3380 ($id, $description) = git_commit_info($orig_commit,
[all …]
/scripts/mod/
Dfile2alias.c521 DEF_FIELD(symval, serio_device_id, id); in do_serio_entry()
527 ADD(alias, "id", id != SERIO_ANY, id); in do_serio_entry()
544 DEF_FIELD_ADDR(symval, acpi_device_id, id); in do_acpi_entry()
548 if (id && strlen((const char *)*id)) in do_acpi_entry()
549 sprintf(alias, "acpi*:%s:*", *id); in do_acpi_entry()
582 DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id); in do_pnp_device_entry()
583 char acpi_id[sizeof(*id)]; in do_pnp_device_entry()
587 "MODULE_ALIAS(\"pnp:d%s*\");\n", *id); in do_pnp_device_entry()
591 acpi_id[j] = toupper((*id)[j]); in do_pnp_device_entry()
612 const char *id = (char *)(*devs)[j].id; in do_pnp_card_entries() local
[all …]
Ddevicetable-offsets.c62 DEVID_FIELD(serio_device_id, id); in main()
66 DEVID_FIELD(acpi_device_id, id); in main()
71 DEVID_FIELD(pnp_device_id, id); in main()
131 DEVID_FIELD(bcma_device_id, id); in main()
169 DEVID_FIELD(zorro_device_id, id); in main()
181 DEVID_FIELD(amba_id, id); in main()
/scripts/selinux/
Dinstall_policy.sh4 if [ `id -u` -ne 0 ]; then
/scripts/gcc-plugins/
Dlatent_entropy_plugin.c555 tree type, id; in latent_entropy_start_unit() local
564 id = get_identifier("latent_entropy"); in latent_entropy_start_unit()
565 latent_entropy_decl = build_decl(UNKNOWN_LOCATION, VAR_DECL, id, type); in latent_entropy_start_unit()
Dgcc-common.h689 static inline opt_pass *get_pass_for_id(int id) in get_pass_for_id() argument
691 return g->get_passes()->get_pass_for_id(id); in get_pass_for_id()
/scripts/package/
Dmkdebian114 user=${KBUILD_BUILD_USER-$(id -nu)}