This file is indexed.

/usr/include/evolution-data-server/libebackend/e-subprocess-factory.h is in libebackend1.2-dev 3.22.7-1.

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
/*
 * e-data-factory.h
 *
 * This library is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library. If not, see <http://www.gnu.org/licenses/>.
 *
 */

#if !defined (__LIBEBACKEND_H_INSIDE__) && !defined (LIBEBACKEND_COMPILATION)
#error "Only <libebackend/libebackend.h> should be included directly."
#endif

#ifndef E_SUBPROCESS_FACTORY_H
#define E_SUBPROCESS_FACTORY_H

#include <libebackend/e-backend-factory.h>

/* Standard GObject macros */
#define E_TYPE_SUBPROCESS_FACTORY \
	(e_subprocess_factory_get_type ())
#define E_SUBPROCESS_FACTORY(obj) \
	(G_TYPE_CHECK_INSTANCE_CAST \
	((obj), E_TYPE_SUBPROCESS_FACTORY, ESubprocessFactory))
#define E_SUBPROCESS_FACTORY_CLASS(cls) \
	(G_TYPE_CHECK_CLASS_CAST \
	((cls), E_TYPE_SUBPROCESS_FACTORY, ESubprocessFactoryClass))
#define E_IS_SUBPROCESS_FACTORY(obj) \
	(G_TYPE_CHECK_INSTANCE_TYPE \
	((obj), E_TYPE_SUBPROCESS_FACTORY))
#define E_IS_SUBPROCESS_FACTORY_CLASS(cls) \
	(G_TYPE_CHECK_CLASS_TYPE \
	((cls), E_TYPE_SUBPROCESS_FACTORY))
#define E_SUBPROCESS_FACTORY_GET_CLASS(obj) \
	(G_TYPE_INSTANCE_GET_CLASS \
	((obj), E_TYPE_SUBPROCESS_FACTORY, ESubprocessFactoryClass))

G_BEGIN_DECLS

typedef struct _ESubprocessFactory ESubprocessFactory;
typedef struct _ESubprocessFactoryClass ESubprocessFactoryClass;
typedef struct _ESubprocessFactoryPrivate ESubprocessFactoryPrivate;

/**
 * ESubprocessFactory:
 *
 * Contains only private data that should be read and manipulated using the
 * functions below.
 *
 * Since: 3.16
 **/
struct _ESubprocessFactory {
	GObject parent;
	ESubprocessFactoryPrivate *priv;
};

struct _ESubprocessFactoryClass {
	GObjectClass parent_class;

	EBackend *	(*ref_backend)		(ESourceRegistry *registry,
						 ESource *source,
						 const gchar *backend_factory_type_name);
	gchar *		(*open_data)		(ESubprocessFactory *subprocess_factory,
						 EBackend *backend,
						 GDBusConnection *connection,
						 gpointer data,
						 GCancellable *cancellable,
						 GError **error);

	/* Signals */
	void		(*backend_created)	(ESubprocessFactory *subprocess_factory,
						 EBackend *backend);
	void		(*backend_closed)	(ESubprocessFactory *subprocess_factory,
						 EBackend *backend);

};

GType		e_subprocess_factory_get_type
						(void) G_GNUC_CONST;

EBackend *	e_subprocess_factory_ref_initable_backend
						(ESubprocessFactory *subprocess_factory,
						 const gchar *uid,
						 const gchar *type_name,
						 const gchar *module_file_name,
						 GCancellable *cancellable,
						 GError **error);
ESourceRegistry *
		e_subprocess_factory_get_registry
						(ESubprocessFactory *subprocess_factory);
gchar *		e_subprocess_factory_open_backend
						(ESubprocessFactory *subprocess_factory,
						 GDBusConnection *connection,
						 const gchar *uid,
						 const gchar *type_name,
						 const gchar *module_file_name,
						 GDBusInterfaceSkeleton *proxy,
						 GCancellable *cancellable,
						 GError **error);
gchar *		e_subprocess_factory_construct_path
						(void);
void		e_subprocess_factory_set_backend_callbacks
						(ESubprocessFactory *subprocess_factory,
						 EBackend *backend,
						 GDBusInterfaceSkeleton *proxy);
void		e_subprocess_factory_call_backends_prepare_shutdown
						(ESubprocessFactory *subprocess_factory);
GList *		e_subprocess_factory_get_backends_list
						(ESubprocessFactory *subprocess_factory);

G_END_DECLS

#endif /* E_SUBPROCESS_FACTORY_H */