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 != if (id) { ... put_device(&id->dev) ... }
25 when != e1 = (T)id
26 when != e1 = (T)(&id->dev)
27 when != e1 = get_device(&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/mod/
Dfile2alias.c546 DEF_FIELD(symval, serio_device_id, id); in do_serio_entry()
552 ADD(alias, "id", id != SERIO_ANY, id); in do_serio_entry()
569 DEF_FIELD_ADDR(symval, acpi_device_id, id); in do_acpi_entry()
573 if (id && strlen((const char *)*id)) in do_acpi_entry()
574 sprintf(alias, "acpi*:%s:*", *id); in do_acpi_entry()
607 DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id); in do_pnp_device_entry()
608 char acpi_id[sizeof(*id)]; in do_pnp_device_entry()
612 "MODULE_ALIAS(\"pnp:d%s*\");\n", *id); in do_pnp_device_entry()
616 acpi_id[j] = toupper((*id)[j]); in do_pnp_device_entry()
637 const char *id = (char *)(*devs)[j].id; in do_pnp_card_entries() local
[all …]
Ddevicetable-offsets.c63 DEVID_FIELD(serio_device_id, id); in main()
67 DEVID_FIELD(acpi_device_id, id); in main()
72 DEVID_FIELD(pnp_device_id, id); in main()
132 DEVID_FIELD(bcma_device_id, id); in main()
170 DEVID_FIELD(zorro_device_id, id); in main()
182 DEVID_FIELD(amba_id, id); in main()
/scripts/
DMakefile.vdsoinst25 link := $(install-dir)/.build-id/$$(shell $(READELF) -n $$(src) | sed -n 's@^.*Build ID: \(..\)\(.*…
Dspdxcheck.py131 id = tok.value.upper()
133 if not id in self.spdx.licenses:
135 self.lastid = id
137 if id not in self.spdx.exceptions:
139 if self.lastid not in self.spdx.exceptions[id]:
Dkernel-doc1183 foreach my $id(split /,/, $ids) {
1184 $newmember .= "$maintype $id; ";
1186 $id =~ s/[:\[].*//;
1187 $id =~ s/^\s*\**(\S+)\s*/$1/;
1196 if ($id =~ m/^\s*$/) {
1200 $newmember .= "$type$id.$name$extra; ";
1228 if ($id =~ m/^\s*$/) {
1232 $newmember .= "$type $id.$name; ";
Dcheckpatch.pl1228 my ($commit, $id, $desc) = @_;
1230 return ($id, $desc) if ((which("git") eq "") || !(-e "$gitroot"));
1236 return ($id, $desc) if ($#lines < 0);
1250 $id = undef;
1252 $id = substr($lines[0], 0, 12);
1256 return ($id, $desc);
3197 my $id = "0123456789ab";
3224 my ($cid, $ctitle) = git_commit_info($orig_commit, $id,
3342 my $id = '0123456789ab';
3381 ($id, $description) = git_commit_info($orig_commit,
[all …]
/scripts/selinux/
Dinstall_policy.sh4 if [ `id -u` -ne 0 ]; then
/scripts/gcc-plugins/
Dlatent_entropy_plugin.c543 tree type, id; in latent_entropy_start_unit() local
552 id = get_identifier("latent_entropy"); in latent_entropy_start_unit()
553 latent_entropy_decl = build_decl(UNKNOWN_LOCATION, VAR_DECL, id, type); in latent_entropy_start_unit()
Dgcc-common.h152 static inline opt_pass *get_pass_for_id(int id) in get_pass_for_id() argument
154 return g->get_passes()->get_pass_for_id(id); in get_pass_for_id()
/scripts/package/
Dmkdebian135 user=${KBUILD_BUILD_USER-$(id -nu)}