Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:privacy_led
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/drivers/media/v4l2-core/
H
A
D
v4l2-subdev.c
363
if (!IS_ERR_OR_NULL(sd->
privacy_led
)) {
in call_s_stream()
365
led_set_brightness(sd->
privacy_led
,
in call_s_stream()
366
sd->
privacy_led
->max_brightness);
in call_s_stream()
368
led_set_brightness(sd->
privacy_led
, 0);
in call_s_stream()
2198
sd->
privacy_led
= NULL;
in v4l2_subdev_init()
2219
sd->
privacy_led
= led_get(sd->dev, "privacy-led");
in v4l2_subdev_get_privacy_led()
2220
if (IS_ERR(sd->
privacy_led
) && PTR_ERR(sd->
privacy_led
) != -ENOENT)
in v4l2_subdev_get_privacy_led()
2221
return dev_err_probe(sd->dev, PTR_ERR(sd->
privacy_led
),
in v4l2_subdev_get_privacy_led()
2224
if (!IS_ERR_OR_NULL(sd->
privacy_led
)) {
in v4l2_subdev_get_privacy_led()
[all...]
/kernel/linux/linux-6.6/drivers/media/i2c/
H
A
D
ov5693.c
144
struct gpio_desc *
privacy_led
;
member
661
gpiod_set_value_cansleep(ov5693->
privacy_led
, 0);
in ov5693_sensor_powerdown()
691
gpiod_set_value_cansleep(ov5693->
privacy_led
, 1);
in ov5693_sensor_powerup()
1199
ov5693->
privacy_led
= devm_gpiod_get_optional(ov5693->dev, "privacy-led",
in ov5693_configure_gpios()
1201
if (IS_ERR(ov5693->
privacy_led
)) {
in ov5693_configure_gpios()
1203
return PTR_ERR(ov5693->
privacy_led
);
in ov5693_configure_gpios()
/kernel/linux/linux-6.6/include/media/
H
A
D
v4l2-subdev.h
1035
* @
privacy_led
: Optional pointer to a LED classdev for the privacy LED for sensors.
1081
struct led_classdev *
privacy_led
;
member
Completed in 8 milliseconds