/usr/share/vala-0.14/vapi/gio-unix-2.0.vapi is in valac-0.14 0.14.2-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | /* gio-unix-2.0.vapi generated by vapigen, do not modify. */
[CCode (cprefix = "G", lower_case_cprefix = "g_")]
namespace GLib {
[CCode (cheader_filename = "gio/gdesktopappinfo.h")]
public class DesktopAppInfo : GLib.Object, GLib.AppInfo {
[CCode (has_construct_function = false)]
public DesktopAppInfo (string desktop_id);
[CCode (has_construct_function = false)]
public DesktopAppInfo.from_filename (string filename);
[CCode (has_construct_function = false)]
public DesktopAppInfo.from_keyfile (GLib.KeyFile key_file);
public unowned string get_categories ();
public unowned string get_filename ();
public unowned string get_generic_name ();
public bool get_is_hidden ();
public bool get_nodisplay ();
public bool get_show_in (string desktop_env);
public bool launch_uris_as_manager (GLib.List uris, GLib.AppLaunchContext launch_context, GLib.SpawnFlags spawn_flags, GLib.SpawnChildSetupFunc user_setup, void* user_setup_data, GLib.DesktopAppLaunchCallback pid_callback, void* pid_callback_data) throws GLib.Error;
public static void set_desktop_env (string desktop_env);
public string filename { get; construct; }
}
[CCode (cheader_filename = "gio/gunixconnection.h")]
public class UnixConnection : GLib.SocketConnection {
[CCode (has_construct_function = false)]
protected UnixConnection ();
public unowned GLib.Credentials receive_credentials (GLib.Cancellable? cancellable = null) throws GLib.Error;
public int receive_fd (GLib.Cancellable? cancellable = null) throws GLib.Error;
public bool send_credentials (GLib.Cancellable? cancellable = null) throws GLib.Error;
public bool send_fd (int fd, GLib.Cancellable? cancellable = null) throws GLib.Error;
}
[CCode (cheader_filename = "gio/gunixfdmessage.h")]
public class UnixFDMessage : GLib.SocketControlMessage {
[CCode (has_construct_function = false, type = "GSocketControlMessage*")]
public UnixFDMessage ();
public bool append_fd (int fd) throws GLib.Error;
public unowned GLib.UnixFDList get_fd_list ();
public int steal_fds (int length);
[CCode (has_construct_function = false, type = "GSocketControlMessage*")]
public UnixFDMessage.with_fd_list (GLib.UnixFDList fd_list);
public GLib.UnixFDList fd_list { get; construct; }
}
[CCode (cheader_filename = "gio/gunixinputstream.h")]
public class UnixInputStream : GLib.InputStream, GLib.PollableInputStream {
[CCode (has_construct_function = false, type = "GInputStream*")]
public UnixInputStream (int fd, bool close_fd);
public bool get_close_fd ();
public int get_fd ();
public void set_close_fd (bool close_fd);
public bool close_fd { get; set; }
public int fd { get; construct; }
}
[CCode (cheader_filename = "gio/gunixmounts.h", cname = "GUnixMountEntry", free_function = "g_unix_mount_free", lower_case_prefix = "g_unix_mount_")]
[Compact]
public class UnixMountEntry {
[CCode (cname = "g_unix_mount_at")]
public UnixMountEntry (string mount_path, uint64 time_read);
[CCode (cname = "g_unix_mount_compare")]
public int compare (GLib.UnixMountEntry mount);
[CCode (cheader_filename = "gio/gunixmounts.h", cname = "g_unix_mounts_get")]
public static GLib.List<GLib.UnixMountEntry> @get (out uint64 time_read = null);
[CCode (cname = "g_unix_mount_get_device_path")]
public unowned string get_device_path ();
[CCode (cname = "g_unix_mount_get_fs_type")]
public unowned string get_fs_type ();
[CCode (cname = "g_unix_mount_get_mount_path")]
public unowned string get_mount_path ();
[CCode (cname = "g_unix_mount_guess_can_eject")]
public bool guess_can_eject ();
[CCode (cname = "g_unix_mount_guess_icon")]
public unowned GLib.Icon guess_icon ();
[CCode (cname = "g_unix_mount_guess_name")]
public unowned string guess_name ();
[CCode (cname = "g_unix_mount_guess_should_display")]
public bool guess_should_display ();
[CCode (cname = "g_unix_mount_is_readonly")]
public bool is_readonly ();
[CCode (cname = "g_unix_mount_is_system_internal")]
public bool is_system_internal ();
}
[CCode (cheader_filename = "gio/gunixmounts.h")]
public class UnixMountMonitor : GLib.Object {
[CCode (has_construct_function = false)]
public UnixMountMonitor ();
public void set_rate_limit (int limit_msec);
public virtual signal void mountpoints_changed ();
public virtual signal void mounts_changed ();
}
[CCode (cheader_filename = "gio/gunixmounts.h")]
[Compact]
public class UnixMountMonitorClass {
}
[CCode (cheader_filename = "gio/gunixmounts.h")]
[Compact]
public class UnixMountPoint {
public int compare (GLib.UnixMountPoint mount2);
public unowned string get_device_path ();
public unowned string get_fs_type ();
public unowned string get_mount_path ();
public bool guess_can_eject ();
public unowned GLib.Icon guess_icon ();
public unowned string guess_name ();
public bool is_loopback ();
public bool is_readonly ();
public bool is_user_mountable ();
}
[CCode (cheader_filename = "gio/gunixoutputstream.h")]
public class UnixOutputStream : GLib.OutputStream, GLib.PollableOutputStream {
[CCode (has_construct_function = false, type = "GOutputStream*")]
public UnixOutputStream (int fd, bool close_fd);
public bool get_close_fd ();
public int get_fd ();
public void set_close_fd (bool close_fd);
public bool close_fd { get; set; }
public int fd { get; construct; }
}
[CCode (cheader_filename = "gio/gunixsocketaddress.h")]
public class UnixSocketAddress : GLib.SocketAddress, GLib.SocketConnectable {
[CCode (has_construct_function = false, type = "GSocketAddress*")]
public UnixSocketAddress (string path);
public static bool abstract_names_supported ();
[CCode (cname = "g_unix_socket_address_new_abstract", has_construct_function = false, type = "GSocketAddress*")]
public UnixSocketAddress.as_abstract (string path, int path_len);
public GLib.UnixSocketAddressType get_address_type ();
public bool get_is_abstract ();
public unowned string get_path ();
public size_t get_path_len ();
[CCode (has_construct_function = false, type = "GSocketAddress*")]
public UnixSocketAddress.with_type (string path, int path_len, GLib.UnixSocketAddressType type);
[NoAccessorMethod]
public bool @abstract { get; construct; }
public GLib.UnixSocketAddressType address_type { get; construct; }
public string path { get; construct; }
[NoAccessorMethod]
public GLib.ByteArray path_as_array { owned get; construct; }
}
[CCode (cheader_filename = "gio/gunixmounts.h")]
public interface DesktopAppInfoLookup : GLib.Object {
public abstract unowned GLib.AppInfo get_default_for_uri_scheme (string uri_scheme);
}
[CCode (cheader_filename = "gio/gfiledescriptorbased.h")]
public interface FileDescriptorBased : GLib.Object {
public abstract int get_fd ();
}
[CCode (cheader_filename = "gio/gunixmounts.h")]
public delegate void DesktopAppLaunchCallback (GLib.DesktopAppInfo appinfo, GLib.Pid pid);
[CCode (cheader_filename = "gio/gunixmounts.h")]
public const string DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME;
[CCode (cheader_filename = "gio/gunixmounts.h", cname = "g_unix_is_mount_path_system_internal")]
public static bool is_mount_path_system_internal (string mount_path);
[CCode (cheader_filename = "gio/gunixmounts.h", cname = "g_unix_mount_points_changed_since")]
public static bool mount_points_changed_since (uint64 time);
[CCode (cheader_filename = "gio/gunixmounts.h", cname = "g_unix_mounts_changed_since")]
public static bool mounts_changed_since (uint64 time);
}
|