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/
Dsetlocalversion94 if test -d .hg && hgid=`hg id 2>/dev/null`; then
97 id=`hg log -r . --template '{latesttag}'`
98 printf '%s%s' -hg "$id"
102 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
103 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-doc1097 foreach my $id(split /,/, $ids) {
1098 $newmember .= "$maintype $id; ";
1100 $id =~ s/[:\[].*//;
1101 $id =~ s/^\s*\**(\S+)\s*/$1/;
1110 if ($id =~ m/^\s*$/) {
1114 $newmember .= "$type$id.$name$extra; ";
1142 if ($id =~ m/^\s*$/) {
1146 $newmember .= "$type $id.$name; ";
Dcheckpatch.pl957 my ($commit, $id, $desc) = @_;
959 return ($id, $desc) if ((which("git") eq "") || !(-e ".git"));
965 return ($id, $desc) if ($#lines < 0);
978 $id = undef;
980 $id = substr($lines[0], 0, 12);
984 return ($id, $desc);
2774 my $id = '0123456789ab';
2807 ($id, $description) = git_commit_info($orig_commit,
2808 $id, $orig_desc);
2810 if (defined($id) &&
[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()
162 DEVID_FIELD(zorro_device_id, id); in main()
174 DEVID_FIELD(amba_id, id); in main()
/scripts/selinux/
Dinstall_policy.sh4 if [ `id -u` -ne 0 ]; then
/scripts/gcc-plugins/
Dlatent_entropy_plugin.c549 tree type, id; in latent_entropy_start_unit() local
560 id = get_identifier("latent_entropy"); in latent_entropy_start_unit()
561 latent_entropy_decl = build_decl(UNKNOWN_LOCATION, VAR_DECL, id, type); in latent_entropy_start_unit()
Dgcc-common.h684 static inline opt_pass *get_pass_for_id(int id) in get_pass_for_id() argument
686 return g->get_passes()->get_pass_for_id(id); in get_pass_for_id()
/scripts/package/
Dmkdebian114 user=${KBUILD_BUILD_USER-$(id -nu)}