HomePort
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Data Structures | Typedefs | Functions
discovery.h File Reference
Include dependency graph for discovery.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  hpd_adapter_id
 
struct  hpd_device_id
 
struct  hpd_parameter_id
 
struct  hpd_service_id
 

Typedefs

typedef struct hpd_adapter_id hpd_adapter_id_t
 
typedef struct hpd_device_id hpd_device_id_t
 
typedef struct hpd_parameter_id hpd_parameter_id_t
 
typedef struct hpd_service_id hpd_service_id_t
 

Functions

hpd_error_t discovery_alloc_adapter (hpd_adapter_t **adapter, const char *id)
 
hpd_error_t discovery_alloc_aid (hpd_adapter_id_t **id, hpd_t *hpd, const char *aid)
 
hpd_error_t discovery_alloc_device (hpd_device_t **device, const char *id)
 
hpd_error_t discovery_alloc_did (hpd_device_id_t **id, hpd_t *hpd, const char *aid, const char *did)
 
hpd_error_t discovery_alloc_parameter (hpd_parameter_t **parameter, const char *id)
 
hpd_error_t discovery_alloc_pid (hpd_parameter_id_t **id, hpd_t *hpd, const char *aid, const char *did, const char *sid, const char *pid)
 
hpd_error_t discovery_alloc_service (hpd_service_t **service, const char *id)
 
hpd_error_t discovery_alloc_sid (hpd_service_id_t **id, hpd_t *hpd, const char *aid, const char *did, const char *sid)
 
hpd_error_t discovery_attach_adapter (hpd_t *hpd, hpd_adapter_t *adapter)
 
hpd_error_t discovery_attach_device (hpd_adapter_t *adapter, hpd_device_t *device)
 
hpd_error_t discovery_attach_parameter (hpd_service_t *service, hpd_parameter_t *parameter)
 
hpd_error_t discovery_attach_service (hpd_device_t *device, hpd_service_t *service)
 
hpd_error_t discovery_copy_aid (hpd_adapter_id_t **dst, const hpd_adapter_id_t *src)
 
hpd_error_t discovery_copy_did (hpd_device_id_t **dst, const hpd_device_id_t *src)
 
hpd_error_t discovery_copy_pid (hpd_parameter_id_t **dst, const hpd_parameter_id_t *src)
 
hpd_error_t discovery_copy_sid (hpd_service_id_t **dst, const hpd_service_id_t *src)
 
hpd_error_t discovery_detach_adapter (hpd_adapter_t *adapter)
 
hpd_error_t discovery_detach_device (hpd_device_t *device)
 
hpd_error_t discovery_detach_parameter (hpd_parameter_t *parameter)
 
hpd_error_t discovery_detach_service (hpd_service_t *service)
 
hpd_error_t discovery_find_adapter (const hpd_adapter_id_t *id, hpd_adapter_t **adapter)
 
hpd_error_t discovery_find_device (const hpd_device_id_t *id, hpd_device_t **device)
 
hpd_error_t discovery_find_parameter (const hpd_parameter_id_t *id, hpd_parameter_t **parameter)
 
hpd_error_t discovery_find_service (const hpd_service_id_t *id, hpd_service_t **service)
 
hpd_error_t discovery_first_action_in_service (hpd_service_t *service, hpd_action_t **action)
 
hpd_error_t discovery_first_adapter_attr (hpd_adapter_t *adapter, hpd_pair_t **pair)
 
hpd_error_t discovery_first_adapter_device (hpd_adapter_t *adapter, hpd_device_t **device)
 
hpd_error_t discovery_first_adapter_service (hpd_adapter_t *adapter, hpd_service_t **service)
 
hpd_error_t discovery_first_device_attr (hpd_device_t *device, hpd_pair_t **pair)
 
hpd_error_t discovery_first_device_service (const hpd_device_t *device, hpd_service_t **service)
 
hpd_error_t discovery_first_hpd_adapter (hpd_t *hpd, hpd_adapter_t **adapter)
 
hpd_error_t discovery_first_hpd_device (hpd_t *hpd, hpd_device_t **device)
 
hpd_error_t discovery_first_hpd_service (hpd_t *hpd, hpd_service_t **service)
 
hpd_error_t discovery_first_parameter_attr (hpd_parameter_t *parameter, hpd_pair_t **pair)
 
hpd_error_t discovery_first_service_attr (hpd_service_t *service, hpd_pair_t **pair)
 
hpd_error_t discovery_first_service_parameter (hpd_service_t *service, hpd_parameter_t **parameter)
 
hpd_error_t discovery_free_adapter (hpd_adapter_t *adapter)
 
hpd_error_t discovery_free_aid (hpd_adapter_id_t *id)
 
hpd_error_t discovery_free_device (hpd_device_t *device)
 
hpd_error_t discovery_free_did (hpd_device_id_t *id)
 
hpd_error_t discovery_free_parameter (hpd_parameter_t *parameter)
 
hpd_error_t discovery_free_pid (hpd_parameter_id_t *id)
 
hpd_error_t discovery_free_service (hpd_service_t *service)
 
hpd_error_t discovery_free_sid (hpd_service_id_t *id)
 
hpd_error_t discovery_get_action_method (const hpd_action_t *action, hpd_method_t *method)
 
hpd_error_t discovery_get_adapter_attr (hpd_adapter_t *adapter, const char *key, const char **val)
 
hpd_error_t discovery_get_adapter_attrs_v (hpd_adapter_t *adapter, va_list vp)
 
hpd_error_t discovery_get_adapter_data (hpd_adapter_t *adapter, void **data)
 
hpd_error_t discovery_get_adapter_hpd (const hpd_adapter_id_t *aid, hpd_t **hpd)
 
hpd_error_t discovery_get_adapter_id (hpd_adapter_t *adapter, const char **id)
 
hpd_error_t discovery_get_device_adapter (const hpd_device_id_t *did, hpd_adapter_id_t **aid)
 
hpd_error_t discovery_get_device_attr (hpd_device_t *device, const char *key, const char **val)
 
hpd_error_t discovery_get_device_attrs_v (hpd_device_t *device, va_list vp)
 
hpd_error_t discovery_get_device_data (hpd_device_t *device, void **data)
 
hpd_error_t discovery_get_device_hpd (const hpd_device_id_t *did, hpd_t **hpd)
 
hpd_error_t discovery_get_device_id (hpd_device_t *device, const char **id)
 
hpd_error_t discovery_get_parameter_adapter (const hpd_parameter_id_t *pid, hpd_adapter_id_t **aid)
 
hpd_error_t discovery_get_parameter_attr (hpd_parameter_t *parameter, const char *key, const char **val)
 
hpd_error_t discovery_get_parameter_attrs_v (hpd_parameter_t *parameter, va_list vp)
 
hpd_error_t discovery_get_parameter_device (const hpd_parameter_id_t *pid, hpd_device_id_t **did)
 
hpd_error_t discovery_get_parameter_hpd (const hpd_parameter_id_t *pid, hpd_t **hpd)
 
hpd_error_t discovery_get_parameter_id (hpd_parameter_t *parameter, const char **id)
 
hpd_error_t discovery_get_parameter_service (const hpd_parameter_id_t *pid, hpd_service_id_t **sid)
 
hpd_error_t discovery_get_service_adapter (const hpd_service_id_t *sid, hpd_adapter_id_t **aid)
 
hpd_error_t discovery_get_service_attr (hpd_service_t *service, const char *key, const char **val)
 
hpd_error_t discovery_get_service_attrs_v (hpd_service_t *service, va_list vp)
 
hpd_error_t discovery_get_service_data (hpd_service_t *service, void **data)
 
hpd_error_t discovery_get_service_device (const hpd_service_id_t *sid, hpd_device_id_t **did)
 
hpd_error_t discovery_get_service_hpd (const hpd_service_id_t *sid, hpd_t **hpd)
 
hpd_error_t discovery_get_service_id (hpd_service_t *service, const char **id)
 
hpd_bool_t discovery_has_service_action (hpd_service_t *service, const hpd_method_t method)
 
hpd_bool_t discovery_is_adapter_id_unique (hpd_t *hpd, hpd_adapter_t *adapter)
 
hpd_bool_t discovery_is_device_id_unique (hpd_adapter_t *adapter, hpd_device_t *device)
 
hpd_bool_t discovery_is_parameter_id_unique (hpd_service_t *service, hpd_parameter_t *parameter)
 
hpd_bool_t discovery_is_service_id_unique (hpd_device_t *device, hpd_service_t *service)
 
hpd_error_t discovery_next_action_in_service (hpd_action_t **action)
 
hpd_error_t discovery_next_adapter_attr (hpd_pair_t **pair)
 
hpd_error_t discovery_next_adapter_device (hpd_device_t **device)
 
hpd_error_t discovery_next_adapter_service (hpd_service_t **service)
 
hpd_error_t discovery_next_device_attr (hpd_pair_t **pair)
 
hpd_error_t discovery_next_device_service (hpd_service_t **service)
 
hpd_error_t discovery_next_hpd_adapter (hpd_adapter_t **adapter)
 
hpd_error_t discovery_next_hpd_device (hpd_device_t **device)
 
hpd_error_t discovery_next_hpd_service (hpd_service_t **service)
 
hpd_error_t discovery_next_parameter_attr (hpd_pair_t **pair)
 
hpd_error_t discovery_next_service_attr (hpd_pair_t **pair)
 
hpd_error_t discovery_next_service_parameter (hpd_parameter_t **parameter)
 
hpd_error_t discovery_set_adapter_attr (hpd_adapter_t *adapter, const char *key, const char *val)
 
hpd_error_t discovery_set_adapter_attrs_v (hpd_adapter_t *adapter, va_list vp)
 
hpd_error_t discovery_set_adapter_data (hpd_adapter_t *adapter, void *data, hpd_free_f on_free)
 
hpd_error_t discovery_set_aid (hpd_adapter_id_t *id, hpd_t *hpd, const char *aid)
 HPD_E_ALLOC: id might be partially updated. More...
 
hpd_error_t discovery_set_device_attr (hpd_device_t *device, const char *key, const char *val)
 
hpd_error_t discovery_set_device_attrs_v (hpd_device_t *device, va_list vp)
 
hpd_error_t discovery_set_device_data (hpd_device_t *device, void *data, hpd_free_f on_free)
 
hpd_error_t discovery_set_did (hpd_device_id_t *id, hpd_t *hpd, const char *aid, const char *did)
 HPD_E_ALLOC: id might be partially updated. More...
 
hpd_error_t discovery_set_parameter_attr (hpd_parameter_t *parameter, const char *key, const char *val)
 
hpd_error_t discovery_set_parameter_attrs_v (hpd_parameter_t *parameter, va_list vp)
 
hpd_error_t discovery_set_pid (hpd_parameter_id_t *id, hpd_t *hpd, const char *aid, const char *did, const char *sid, const char *pid)
 HPD_E_ALLOC: id might be partially updated. More...
 
hpd_error_t discovery_set_service_action (hpd_service_t *service, const hpd_method_t method, hpd_action_f action)
 
hpd_error_t discovery_set_service_actions_v (hpd_service_t *service, va_list vp)
 
hpd_error_t discovery_set_service_attr (hpd_service_t *service, const char *key, const char *val)
 
hpd_error_t discovery_set_service_attrs_v (hpd_service_t *service, va_list vp)
 
hpd_error_t discovery_set_service_data (hpd_service_t *service, void *data, hpd_free_f on_free)
 
hpd_error_t discovery_set_sid (hpd_service_id_t *id, hpd_t *hpd, const char *aid, const char *did, const char *sid)
 HPD_E_ALLOC: id might be partially updated. More...
 

Data Structure Documentation

struct hpd_adapter_id

Definition at line 38 of file discovery.h.

Collaboration diagram for hpd_adapter_id:
Data Fields
char * aid
hpd_t * hpd
struct hpd_device_id

Definition at line 43 of file discovery.h.

Collaboration diagram for hpd_device_id:
Data Fields
hpd_adapter_id_t adapter
char * did
struct hpd_parameter_id

Definition at line 53 of file discovery.h.

Collaboration diagram for hpd_parameter_id:
Data Fields
char * pid
hpd_service_id_t service
struct hpd_service_id

Definition at line 48 of file discovery.h.

Collaboration diagram for hpd_service_id:
Data Fields
hpd_device_id_t device
char * sid

Typedef Documentation

Function Documentation

hpd_error_t discovery_alloc_adapter ( hpd_adapter_t **  adapter,
const char *  id 
)

Definition at line 34 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_aid ( hpd_adapter_id_t **  id,
hpd_t hpd,
const char *  aid 
)

Definition at line 89 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_device ( hpd_device_t **  device,
const char *  id 
)

Definition at line 55 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_did ( hpd_device_id_t **  id,
hpd_t hpd,
const char *  aid,
const char *  did 
)

Definition at line 104 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_parameter ( hpd_parameter_t **  parameter,
const char *  id 
)

Definition at line 101 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_pid ( hpd_parameter_id_t **  id,
hpd_t hpd,
const char *  aid,
const char *  did,
const char *  sid,
const char *  pid 
)

Definition at line 134 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_service ( hpd_service_t **  service,
const char *  id 
)

Definition at line 76 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_alloc_sid ( hpd_service_id_t **  id,
hpd_t hpd,
const char *  aid,
const char *  did,
const char *  sid 
)

Definition at line 119 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_attach_adapter ( hpd_t hpd,
hpd_adapter_t adapter 
)

Definition at line 181 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_attach_device ( hpd_adapter_t adapter,
hpd_device_t device 
)

Definition at line 208 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_attach_parameter ( hpd_service_t service,
hpd_parameter_t parameter 
)

Definition at line 259 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_attach_service ( hpd_device_t device,
hpd_service_t service 
)

Definition at line 235 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_copy_aid ( hpd_adapter_id_t **  dst,
const hpd_adapter_id_t src 
)

Definition at line 150 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_copy_did ( hpd_device_id_t **  dst,
const hpd_device_id_t src 
)

Definition at line 155 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_copy_pid ( hpd_parameter_id_t **  dst,
const hpd_parameter_id_t src 
)

Definition at line 165 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_copy_sid ( hpd_service_id_t **  dst,
const hpd_service_id_t src 
)

Definition at line 160 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_detach_adapter ( hpd_adapter_t adapter)

Definition at line 274 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_detach_device ( hpd_device_t device)

Definition at line 288 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_detach_parameter ( hpd_parameter_t parameter)

Definition at line 310 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_detach_service ( hpd_service_t service)

Definition at line 302 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_find_adapter ( const hpd_adapter_id_t id,
hpd_adapter_t **  adapter 
)

Definition at line 239 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_find_device ( const hpd_device_id_t id,
hpd_device_t **  device 
)

Definition at line 245 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_find_parameter ( const hpd_parameter_id_t id,
hpd_parameter_t **  parameter 
)

Definition at line 257 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_find_service ( const hpd_service_id_t id,
hpd_service_t **  service 
)

Definition at line 251 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_action_in_service ( hpd_service_t service,
hpd_action_t **  action 
)

Definition at line 559 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_adapter_attr ( hpd_adapter_t adapter,
hpd_pair_t **  pair 
)

Definition at line 565 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_first_adapter_device ( hpd_adapter_t adapter,
hpd_device_t **  device 
)

Definition at line 618 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_adapter_service ( hpd_adapter_t adapter,
hpd_service_t **  service 
)

Definition at line 624 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_device_attr ( hpd_device_t device,
hpd_pair_t **  pair 
)

Definition at line 570 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_first_device_service ( const hpd_device_t device,
hpd_service_t **  service 
)

Definition at line 636 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_hpd_adapter ( hpd_t hpd,
hpd_adapter_t **  adapter 
)

Definition at line 585 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_hpd_device ( hpd_t hpd,
hpd_device_t **  device 
)

Definition at line 591 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_hpd_service ( hpd_t hpd,
hpd_service_t **  service 
)

Definition at line 603 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_first_parameter_attr ( hpd_parameter_t parameter,
hpd_pair_t **  pair 
)

Definition at line 580 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_first_service_attr ( hpd_service_t service,
hpd_pair_t **  pair 
)

Definition at line 575 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_first_service_parameter ( hpd_service_t service,
hpd_parameter_t **  parameter 
)

Definition at line 642 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_free_adapter ( hpd_adapter_t adapter)

Definition at line 120 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_aid ( hpd_adapter_id_t id)

Definition at line 171 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_device ( hpd_device_t device)

Definition at line 137 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_did ( hpd_device_id_t id)

Definition at line 178 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_parameter ( hpd_parameter_t parameter)

Definition at line 172 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_pid ( hpd_parameter_id_t id)

Definition at line 195 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_service ( hpd_service_t service)

Definition at line 154 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_free_sid ( hpd_service_id_t id)

Definition at line 186 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_action_method ( const hpd_action_t action,
hpd_method_t method 
)

Definition at line 432 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_adapter_attr ( hpd_adapter_t adapter,
const char *  key,
const char **  val 
)

Definition at line 360 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_adapter_attrs_v ( hpd_adapter_t adapter,
va_list  vp 
)

Definition at line 380 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_adapter_data ( hpd_adapter_t adapter,
void **  data 
)

Definition at line 318 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_adapter_hpd ( const hpd_adapter_id_t aid,
hpd_t **  hpd 
)

Definition at line 263 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_adapter_id ( hpd_adapter_t adapter,
const char **  id 
)

Definition at line 336 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_device_adapter ( const hpd_device_id_t did,
hpd_adapter_id_t **  aid 
)

Definition at line 275 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_device_attr ( hpd_device_t device,
const char *  key,
const char **  val 
)

Definition at line 365 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_device_attrs_v ( hpd_device_t device,
va_list  vp 
)

Definition at line 393 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_device_data ( hpd_device_t device,
void **  data 
)

Definition at line 324 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_device_hpd ( const hpd_device_id_t did,
hpd_t **  hpd 
)

Definition at line 269 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_device_id ( hpd_device_t device,
const char **  id 
)

Definition at line 342 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_adapter ( const hpd_parameter_id_t pid,
hpd_adapter_id_t **  aid 
)

Definition at line 302 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_attr ( hpd_parameter_t parameter,
const char *  key,
const char **  val 
)

Definition at line 375 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_attrs_v ( hpd_parameter_t parameter,
va_list  vp 
)

Definition at line 419 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_device ( const hpd_parameter_id_t pid,
hpd_device_id_t **  did 
)

Definition at line 307 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_hpd ( const hpd_parameter_id_t pid,
hpd_t **  hpd 
)

Definition at line 296 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_id ( hpd_parameter_t parameter,
const char **  id 
)

Definition at line 354 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_parameter_service ( const hpd_parameter_id_t pid,
hpd_service_id_t **  sid 
)

Definition at line 312 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_service_adapter ( const hpd_service_id_t sid,
hpd_adapter_id_t **  aid 
)

Definition at line 286 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_service_attr ( hpd_service_t service,
const char *  key,
const char **  val 
)

Definition at line 370 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_service_attrs_v ( hpd_service_t service,
va_list  vp 
)

Definition at line 406 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_service_data ( hpd_service_t service,
void **  data 
)

Definition at line 330 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_service_device ( const hpd_service_id_t sid,
hpd_device_id_t **  did 
)

Definition at line 291 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_get_service_hpd ( const hpd_service_id_t sid,
hpd_t **  hpd 
)

Definition at line 280 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_get_service_id ( hpd_service_t service,
const char **  id 
)

Definition at line 348 of file discovery.c.

Here is the caller graph for this function:

hpd_bool_t discovery_has_service_action ( hpd_service_t service,
const hpd_method_t  method 
)

Definition at line 768 of file discovery.c.

Here is the caller graph for this function:

hpd_bool_t discovery_is_adapter_id_unique ( hpd_t hpd,
hpd_adapter_t adapter 
)

Definition at line 773 of file discovery.c.

Here is the caller graph for this function:

hpd_bool_t discovery_is_device_id_unique ( hpd_adapter_t adapter,
hpd_device_t device 
)

Definition at line 781 of file discovery.c.

Here is the caller graph for this function:

hpd_bool_t discovery_is_parameter_id_unique ( hpd_service_t service,
hpd_parameter_t parameter 
)

Definition at line 797 of file discovery.c.

Here is the caller graph for this function:

hpd_bool_t discovery_is_service_id_unique ( hpd_device_t device,
hpd_service_t service 
)

Definition at line 789 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_action_in_service ( hpd_action_t **  action)

Definition at line 648 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_adapter_attr ( hpd_pair_t **  pair)

Definition at line 662 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_next_adapter_device ( hpd_device_t **  device)

Definition at line 733 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_adapter_service ( hpd_service_t **  service)

Definition at line 739 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_device_attr ( hpd_pair_t **  pair)

Definition at line 667 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_next_device_service ( hpd_service_t **  service)

Definition at line 755 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_hpd_adapter ( hpd_adapter_t **  adapter)

Definition at line 682 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_hpd_device ( hpd_device_t **  device)

Definition at line 688 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_next_hpd_service ( hpd_service_t **  service)

Definition at line 704 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_next_parameter_attr ( hpd_pair_t **  pair)

Definition at line 677 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_next_service_attr ( hpd_pair_t **  pair)

Definition at line 672 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_next_service_parameter ( hpd_parameter_t **  parameter)

Definition at line 761 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_set_adapter_attr ( hpd_adapter_t adapter,
const char *  key,
const char *  val 
)

Definition at line 462 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_adapter_attrs_v ( hpd_adapter_t adapter,
va_list  vp 
)

Definition at line 491 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_adapter_data ( hpd_adapter_t adapter,
void *  data,
hpd_free_f  on_free 
)

Definition at line 438 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_set_aid ( hpd_adapter_id_t id,
hpd_t hpd,
const char *  aid 
)

HPD_E_ALLOC: id might be partially updated.

Definition at line 37 of file discovery_id.c.

Here is the caller graph for this function:

hpd_error_t discovery_set_device_attr ( hpd_device_t device,
const char *  key,
const char *  val 
)

Definition at line 467 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_device_attrs_v ( hpd_device_t device,
va_list  vp 
)

Definition at line 504 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_device_data ( hpd_device_t device,
void *  data,
hpd_free_f  on_free 
)

Definition at line 446 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_set_did ( hpd_device_id_t id,
hpd_t hpd,
const char *  aid,
const char *  did 
)

HPD_E_ALLOC: id might be partially updated.

Definition at line 50 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_parameter_attr ( hpd_parameter_t parameter,
const char *  key,
const char *  val 
)

Definition at line 477 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_parameter_attrs_v ( hpd_parameter_t parameter,
va_list  vp 
)

Definition at line 530 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_pid ( hpd_parameter_id_t id,
hpd_t hpd,
const char *  aid,
const char *  did,
const char *  sid,
const char *  pid 
)

HPD_E_ALLOC: id might be partially updated.

Definition at line 78 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_service_action ( hpd_service_t service,
const hpd_method_t  method,
hpd_action_f  action 
)

Definition at line 482 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_set_service_actions_v ( hpd_service_t service,
va_list  vp 
)

Definition at line 543 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_service_attr ( hpd_service_t service,
const char *  key,
const char *  val 
)

Definition at line 472 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_service_attrs_v ( hpd_service_t service,
va_list  vp 
)

Definition at line 517 of file discovery.c.

Here is the call graph for this function:

Here is the caller graph for this function:

hpd_error_t discovery_set_service_data ( hpd_service_t service,
void *  data,
hpd_free_f  on_free 
)

Definition at line 454 of file discovery.c.

Here is the caller graph for this function:

hpd_error_t discovery_set_sid ( hpd_service_id_t id,
hpd_t hpd,
const char *  aid,
const char *  did,
const char *  sid 
)

HPD_E_ALLOC: id might be partially updated.

Definition at line 64 of file discovery_id.c.

Here is the call graph for this function:

Here is the caller graph for this function: