blob: 057ab552902d05fd036f907dd5ce1a8db72b6110 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* gudev-1.0.vapi generated by vapigen, do not modify. */
[CCode (cprefix = "GUdev", lower_case_cprefix = "g_udev_")]
namespace GUdev {
[CCode (cheader_filename = "gudev/gudev.h")]
public class Client : GLib.Object {
[CCode (has_construct_function = false)]
public Client ([CCode (array_length = false)] string[]? subsystems);
public unowned GUdev.Device? query_by_device_file (string device_file);
public unowned GUdev.Device? query_by_device_number (GUdev.DeviceType type, GUdev.DeviceNumber number);
public GLib.List query_by_subsystem (string? subsystem);
public unowned GUdev.Device? query_by_subsystem_and_name (string subsystem, string name);
public unowned GUdev.Device? query_by_sysfs_path (string sysfs_path);
[NoWrapper]
public virtual void reserved1 ();
[NoWrapper]
public virtual void reserved2 ();
[NoWrapper]
public virtual void reserved3 ();
[NoWrapper]
public virtual void reserved4 ();
[NoWrapper]
public virtual void reserved5 ();
[NoWrapper]
public virtual void reserved6 ();
[NoWrapper]
public virtual void reserved7 ();
[NoWrapper]
public virtual void reserved8 ();
[NoAccessorMethod]
[CCode (array_length = false, array_null_terminated = true)]
public string[] subsystems { owned get; construct; }
public virtual signal void uevent (string action, GUdev.Device device);
}
[CCode (cheader_filename = "gudev/gudev.h")]
public class Device : GLib.Object {
public unowned string get_action ();
public unowned string? get_device_file ();
[CCode (array_length = false)]
public unowned string[] get_device_file_symlinks ();
public GUdev.DeviceNumber get_device_number ();
public GUdev.DeviceType get_device_type ();
public unowned string get_devtype ();
public unowned string? get_driver ();
public unowned string get_name ();
public unowned string get_number ();
public unowned GUdev.Device? get_parent ();
public unowned GUdev.Device? get_parent_with_subsystem (string subsystem, string? devtype);
public unowned string? get_property (string key);
public bool get_property_as_boolean (string key);
public double get_property_as_double (string key);
public int get_property_as_int (string key);
[CCode (array_length = false)]
public unowned string?[] get_property_as_strv (string key);
public uint64 get_property_as_uint64 (string key);
[CCode (array_length = false)]
public unowned string?[] get_property_keys ();
public uint64 get_seqnum ();
public unowned string get_subsystem ();
public unowned string? get_sysfs_attr (string name);
public bool get_sysfs_attr_as_boolean (string name);
public double get_sysfs_attr_as_double (string name);
public int get_sysfs_attr_as_int (string name);
[CCode (array_length = false)]
public unowned string?[] get_sysfs_attr_as_strv (string name);
public uint64 get_sysfs_attr_as_uint64 (string name);
public unowned string get_sysfs_path ();
public bool has_property (string key);
[NoWrapper]
public virtual void reserved1 ();
[NoWrapper]
public virtual void reserved2 ();
[NoWrapper]
public virtual void reserved3 ();
[NoWrapper]
public virtual void reserved4 ();
[NoWrapper]
public virtual void reserved5 ();
[NoWrapper]
public virtual void reserved6 ();
[NoWrapper]
public virtual void reserved7 ();
[NoWrapper]
public virtual void reserved8 ();
}
[CCode (cheader_filename = "gudev/gudev.h")]
[SimpleType]
[IntegerType (rank = 9)]
public struct DeviceNumber : Posix.dev_t {
}
[CCode (cprefix = "G_UDEV_DEVICE_TYPE_", cheader_filename = "gudev/gudev.h")]
public enum DeviceType {
NONE,
BLOCK,
CHAR
}
}
|