| Top | 
| const gchar * | storaged_fstab_entry_get_fsname () | 
| const gchar * | storaged_fstab_entry_get_dir () | 
| const gchar * | storaged_fstab_entry_get_fstype () | 
| const gchar * | storaged_fstab_entry_get_opts () | 
| gint | storaged_fstab_entry_get_freq () | 
| gint | storaged_fstab_entry_get_passno () | 
| gint | storaged_fstab_entry_compare () | 
| StoragedFstabMonitor * | storaged_fstab_monitor_new () | 
| GList * | storaged_fstab_monitor_get_entries () | 
const gchar *
storaged_fstab_entry_get_fsname (StoragedFstabEntry *entry);
Gets the fsname field of entry
.
const gchar *
storaged_fstab_entry_get_dir (StoragedFstabEntry *entry);
Gets the dir field of entry
.
const gchar *
storaged_fstab_entry_get_fstype (StoragedFstabEntry *entry);
Gets the type field of entry
.
const gchar *
storaged_fstab_entry_get_opts (StoragedFstabEntry *entry);
Gets the opts field of entry
.
gint
storaged_fstab_entry_get_freq (StoragedFstabEntry *entry);
Gets the freq field of entry
.
gint
storaged_fstab_entry_get_passno (StoragedFstabEntry *entry);
Gets the passno field of entry
.
gint storaged_fstab_entry_compare (StoragedFstabEntry *entry,StoragedFstabEntry *other_entry);
Comparison function for comparing two StoragedFstabEntry objects.
StoragedFstabMonitor *
storaged_fstab_monitor_new (void);
Creates a new StoragedFstabMonitor object.
Signals are emitted in the 
GList *
storaged_fstab_monitor_get_entries (StoragedFstabMonitor *monitor);
Gets all /etc/fstab entries
 A list of StoragedFstabEntry objects that must be freed with g_list_free() after each element has been freed with g_object_unref(). 
[transfer full][element-type StoragedFstabEntry]
typedef struct _StoragedFstabEntry StoragedFstabEntry;
The StoragedFstabEntry structure contains only private data and should only be accessed using the provided API.
typedef struct _StoragedFstabMonitor StoragedFstabMonitor;
The StoragedFstabMonitor structure contains only private data and should only be accessed using the provided API.
“entry-added” signalvoid user_function (StoragedFstabMonitor *monitor, StoragedFstabEntry *entry, gpointer user_data)
Emitted when a fstab entry is added.
This signal is emitted in the
thread-default main loopthat monitor
 was created in.
monitor  | 
||
entry  | 
The StoragedFstabEntry that was added.  | 
|
user_data  | 
user data set when the signal handler was connected.  | 
Flags: Has Details
“entry-removed” signalvoid user_function (StoragedFstabMonitor *monitor, StoragedFstabEntry *entry, gpointer user_data)
Emitted when a fstab entry is removed.
This signal is emitted in the
thread-default main loopthat monitor
 was created in.
monitor  | 
||
entry  | 
The StoragedFstabEntry that was removed.  | 
|
user_data  | 
user data set when the signal handler was connected.  | 
Flags: Has Details