input_host_callbacks 구조체 참조

input_host_callbacks 구조체 참조

#include < input.h >

데이터 필드

input_device_identifier_t *(*  create_device_identifier )( input_host_t *host, const char *name, int32_t product_id, int32_t vendor_id, input_bus_t bus, const char *unique_id)
 
input_device_definition_t *(*  create_device_definition )( input_host_t *host)
 
input_report_definition_t *(*  create_input_report_definition )( input_host_t *host)
 
input_report_definition_t *(*  create_output_report_definition )( input_host_t *host)
 
void(*  free_report_definition )( input_host_t *host, input_report_definition_t *report_def)
 
void(*  input_device_definition_add_report )( input_host_t *host, input_device_definition_t *d, input_report_definition_t *r)
 
void(*  input_report_definition_add_collection )( input_host_t *host, input_report_definition_t *report, input_collection_id_t id, int32_t arity)
 
void(*  input_report_definition_declare_usage_int )( input_host_t *host, input_report_definition_t *report, input_collection_id_t id, input_usage_t usage, int32_t min, int32_t max, float resolution)
 
void(*  input_report_definition_declare_usages_bool )( input_host_t *host, input_report_definition_t *report, input_collection_id_t id, input_usage_t *usage, size_t usage_count)
 
input_device_handle_t *(*  register_device )( input_host_t *host, input_device_identifier_t *id, input_device_definition_t *d)
 
void(*  unregister_device )( input_host_t *host, input_device_handle_t *handle)
 
input_report_t *(*  input_allocate_report )( input_host_t *host, input_report_definition_t *r)
 
void(*  input_report_set_usage_int )( input_host_t *host, input_report_t *r, input_collection_id_t id, input_usage_t usage, int32_t value, int32_t arity_index)
 
void(*  input_report_set_usage_bool )( input_host_t *host, input_report_t *r, input_collection_id_t id, input_usage_t usage, bool value, int32_t arity_index)
 
void(*  report_event )( input_host_t *host, input_device_handle_t *d, input_report_t *report)
 
input_property_map_t *(*  input_get_device_property_map )( input_host_t *host, input_device_identifier_t *id)
 
input_property_t *(*  input_get_device_property )( input_host_t *host, input_property_map_t *map, const char *key)
 
const char *(*  input_get_property_key )( input_host_t *host, input_property_t *property)
 
const char *(*  input_get_property_value )( input_host_t *host, input_property_t *property)
 
void(*  input_free_device_property )( input_host_t *host, input_property_t *property)
 
void(*  input_free_device_property_map )( input_host_t *host, input_property_map_t *map)
 

상세 설명

input.h 파일의 409 번 줄에 정의되어 있습니다.

필드 문서

input_device_definition_t *(* create_device_definition)( input_host_t *host)

기기의 입력 기능을 설명하는 기기 정의를 할당합니다. 기기 정의는 원하는 만큼 기기를 등록하는 데 사용할 수 있습니다.

input.h FILE의 424 라인에 정의가 있습니다.

input_device_identifier_t *(* create_device_identifier)( input_host_t *host, const char *name, int32_t product_id, int32_t vendor_id, input_bus_t bus, const char *unique_id)

지정된 속성으로 기기 식별자를 만듭니다. 고유 ID는 특정 하드웨어를 정확하게 식별하는 문자열이어야 합니다. 예를 들어 블루투스를 통해 연결된 입력 장치는 MAC 주소를 고유 ID로 사용할 수 있습니다.

input.h FILE의 416 행에 정의가 있습니다.

input_report_definition_t *(* create_input_report_definition)( input_host_t *host)

HAL이 수신 입력 이벤트를 호스트에 알리는 데 사용할 입력 보고서 또는 호스트가 원하는 상태 변경사항 (예: LED 설정)을 HAL에 알리는 데 사용할 출력 보고서를 할당합니다.

input.h 파일의 431 줄에 정의가 있습니다.

input_report_definition_t *(* create_output_report_definition)( input_host_t *host)

input.h FILE의 432 라인에 정의가 있습니다.

void(* free_report_definition)( input_host_t *host, input_report_definition_t *report_def)

보고서 정의를 해제합니다.

input.h FILE의 437 행에 정의가 있습니다.

지정된 보고서에 설명된 대로 모든 상태가 포함된 보고서를 할당합니다.

input.h FILE의 488 행에 정의가 있습니다.

void(* input_device_definition_add_report)( input_host_t *host, input_device_definition_t *d, input_report_definition_t *r)

지정된 입력 장치에 보고서를 추가합니다.

input.h FILE의 442 행에 정의가 있습니다.

void(* input_free_device_property)( input_host_t *host, input_property_t *property)

input_property_t*를 해제합니다.

input.h 파일의 535 번 행에 정의가 있습니다.

void(* input_free_device_property_map)( input_host_t *host, input_property_map_t *map)

input_property_map_t*를 해제합니다.

input.h 파일의 540 번 행에 정의가 있습니다.

input_property_t *(* input_get_device_property)( input_host_t *host, input_property_map_t *map, const char *key)

지정된 키를 사용하여 기기의 속성을 검색합니다. 키가 없으면 NULL을 반환하고, input_free_device_property() 를 사용하여 해제해야 하는 input_property_t* 를 반환합니다. 상응하는 input_property_map_t가 해제된 후 input_property_t를 사용하는 것은 정의되지 않습니다.

input.h 파일의 517 행에 정의가 있습니다.

input_property_map_t *(* input_get_device_property_map)( input_host_t *host, input_device_identifier_t *id)

기기의 속성 집합을 검색합니다. 반환된 input_property_map_t* 는 input_get_device_property 콜백을 통해 특정 속성을 쿼리하는 데 사용할 수 있습니다.

input.h 파일의 509 번 행에 정의가 있습니다.

const char*(* input_get_property_key)( input_host_t *host, input_property_t *property)

입력 속성의 키를 가져옵니다. 속성이 NULL이면 NULL을 반환합니다. 반환된 const char* 는 input_property_t가 소유합니다.

input.h 파일의 524 번 행에 정의가 있습니다.

const char*(* input_get_property_value)( input_host_t *host, input_property_t *property)

입력 속성의 값을 가져옵니다. 속성이 NULL이면 NULL을 반환합니다. 반환된 const char* 는 input_property_t가 소유합니다.

input.h 파일의 530 번 행에 정의가 있습니다.

void(* input_report_definition_add_collection)( input_host_t *host, input_report_definition_t *report, input_collection_id_t id, int32_t arity)

지정된 arity 및 ID로 컬렉션을 추가합니다. 컬렉션은 단일 손가락 터치의 X 및 Y 좌표 또는 키보드의 키 집합과 같이 논리적으로 그룹화된 일련의 속성을 설명합니다. 어리티는 이 컬렉션의 반복 인스턴스가 연결된 보고서에 표시되는 횟수를 선언합니다. ID는 컬렉션으로 표현되는 그룹 유형을 설명합니다. 예를 들어 최대 2개의 손가락을 동시에 보고할 수 있는 터치 스크린에는 X 및 Y 좌표, 2의 항목 수, INPUT_COLLECTION_USAGE_TOUCHSCREEN ID가 있는 컬렉션이 있을 수 있습니다. 특정 ID는 특정 보고서에 한 번만 표시될 수 있습니다.

input.h FILE의 455 행에 정의가 있습니다.

void(* input_report_definition_declare_usage_int)( input_host_t *host, input_report_definition_t *report, input_collection_id_t id, input_usage_t usage, int32_t min, int32_t max, float resolution)

지정된 속성을 사용하여 int 사용을 선언합니다. 보고서 및 수집은 사용이 선언되는 위치를 정의합니다.

input.h FILE의 462 라인에 정의가 있습니다.

void(* input_report_definition_declare_usages_bool)( input_host_t *host, input_report_definition_t *report, input_collection_id_t id, input_usage_t *usage, size_t usage_count)

지정된 속성을 사용하여 불리언 사용 집합을 선언합니다. 보고서 및 수집은 사용이 선언되는 위치를 정의합니다.

input.h 파일의 470 행에 정의가 있습니다.

void(* input_report_set_usage_bool)( input_host_t *host, input_report_t *r, input_collection_id_t id, input_usage_t usage, bool value, int32_t arity_index)

보고서에 불리언 사용 값을 추가합니다.

input.h 파일의 499 행에 정의가 있습니다.

void(* input_report_set_usage_int)( input_host_t *host, input_report_t *r, input_collection_id_t id, input_usage_t usage, int32_t value, int32_t arity_index)

보고서에 int 사용량 값을 추가합니다.

input.h FILE의 493 행에 정의가 있습니다.

지정된 입력 기기 정의를 등록합니다. 이렇게 하면 입력 장치가 연결되었음을 호스트에 알리고 모든 기능에 관한 설명을 제공합니다.

input.h 파일의 479 번 행에 정의가 있습니다.

void(* report_event)( input_host_t *host, input_device_handle_t *d, input_report_t *report)

input.h 파일의 502 번 행에 정의가 있습니다.

void(* unregister_device)( input_host_t *host, input_device_handle_t *handle)

지정된 기기의 등록 취소

input.h FILE의 483 행에 정의가 있습니다.


이 구조체에 관한 문서는 다음 파일에서 생성되었습니다.
  • hardware/libhardware/include/hardware/ input.h