This file is indexed.

/usr/include/libdbustest-1/libdbustest/process.h is in libdbustest1-dev 15.04.0+15.10.20151002-0ubuntu1.

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
/*
Copyright 2012 Canonical Ltd.

Authors:
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of the GNU General Public License version 3, as published 
by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but 
WITHOUT ANY WARRANTY; without even the implied warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along 
with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __DBUS_TEST_PROCESS_H__
#define __DBUS_TEST_PROCESS_H__

#include <glib.h>
#include <glib-object.h>
#include "dbus-test.h"

G_BEGIN_DECLS

#define DBUS_TEST_TYPE_PROCESS            (dbus_test_process_get_type ())
#define DBUS_TEST_PROCESS(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), DBUS_TEST_TYPE_PROCESS, DbusTestProcess))
#define DBUS_TEST_PROCESS_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), DBUS_TEST_TYPE_PROCESS, DbusTestProcessClass))
#define DBUS_TEST_IS_PROCESS(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DBUS_TEST_TYPE_PROCESS))
#define DBUS_TEST_IS_PROCESS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DBUS_TEST_TYPE_PROCESS))
#define DBUS_TEST_PROCESS_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), DBUS_TEST_TYPE_PROCESS, DbusTestProcessClass))

typedef struct _DbusTestProcess         DbusTestProcess;
typedef struct _DbusTestProcessClass    DbusTestProcessClass;
typedef struct _DbusTestProcessPrivate  DbusTestProcessPrivate;

struct _DbusTestProcessClass {
	DbusTestTaskClass parent_class;
};

struct _DbusTestProcess {
	DbusTestTask parent;
	DbusTestProcessPrivate * priv;
};

GType dbus_test_process_get_type (void);

DbusTestProcess * dbus_test_process_new (const gchar * executable);
void dbus_test_process_append_param (DbusTestProcess * process, const gchar * parameter);
GPid dbus_test_process_get_pid (DbusTestProcess * process);

G_END_DECLS

#endif