This file is indexed.

/usr/include/x86_64-linux-gnu/alljoyn/about/AboutIconService.h is in liballjoyn-dev-1604 16.04a-3.

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
/**
 * @file
 * An Alljoyn BusObject that implements the org.alljoyn.Icon interface
 */
/******************************************************************************
 * Copyright AllSeen Alliance. All rights reserved.
 *
 *    Permission to use, copy, modify, and/or distribute this software for any
 *    purpose with or without fee is hereby granted, provided that the above
 *    copyright notice and this permission notice appear in all copies.
 *
 *    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 *    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 *    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 *    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 *    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 *    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 *    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 ******************************************************************************/

#ifndef ABOUTICONSERVICE_H_
#define ABOUTICONSERVICE_H_

#include <alljoyn/BusObject.h>

namespace ajn {
namespace services {

/**
 * AboutIconService is an AllJoyn BusObject that implements the org.alljoyn.Icon standard interface.
 * Applications that provide AllJoyn IoE services to receive info about the Icon of the service.
 *
 * @deprecated The AboutIconService class has been deprecated please see the
 * AboutIconObj class for similar functionality as the AboutIconService class.
 */
class AboutIconService : public ajn::BusObject {
  public:

    /**
     * @deprecated The AboutIconService class has been deprecated please see the
     * AboutIconObj class.
     *
     * @param[in] bus  BusAttachment instance associated with this AboutService
     * @param[in]  mimetype of the icon
     * @param[in]  url of the icon
     * @param[in]  data	is the content of the icon
     * @param[in]  csize is the size of the content in bytes.
     */
    QCC_DEPRECATED(AboutIconService(ajn::BusAttachment& bus, qcc::String const& mimetype, qcc::String const& url, uint8_t* data, size_t csize));

    /**
     * @deprecated The AboutIconService class has been deprecated please see the
     * AboutIconObj class.
     *
     * Desctructor of AboutIconService
     */
    QCC_DEPRECATED(virtual ~AboutIconService()) {
    }

    /**
     * Register the AboutIconService  on the AllJoyn bus.
     *
     * @deprecated The AboutIconService class has been deprecated please see the
     * AboutIconObj class.
     *
     * @return status.
     */
    QCC_DEPRECATED(QStatus Register());

  private:
    /**
     * Handles  GetUrl method
     * @param[in]  member
     * @param[in]  msg reference of AllJoyn Message
     */
    void GetUrl(const ajn::InterfaceDescription::Member* member, ajn::Message& msg);

    /**
     *	Handles  GetContent method
     * @param[in]  member
     * @param[in]  msg reference of AllJoyn Message
     */
    void GetContent(const ajn::InterfaceDescription::Member* member, ajn::Message& msg);

    /**
     * Handles the GetPropery request
     * @param[in]  ifcName  interface name
     * @param[in]  propName the name of the properly
     * @param[in]  val reference of MsgArg out parameter.
     * @return
     */
    QStatus Get(const char* ifcName, const char* propName, MsgArg& val);

    /**
     *  pointer to BusAttachment
     */
    ajn::BusAttachment* m_BusAttachment;
    /**
     *	stores the mime type of the icon.
     */
    qcc::String m_MimeType;
    /**
     *	stores the url of the icon
     */
    qcc::String m_Url;

    /**
     *	stores the content of the icon
     */
    uint8_t* m_Content;

    /**
     *	stores the size of the icon's content
     */
    size_t m_ContentSize;

};

}
}

#endif /* ABOUTICONSERVICE_H_ */