Home
last modified time | relevance | path

Searched refs:CMD_ID (Results 1 – 3 of 3) sorted by relevance

/external/nos/host/generic/libnos_transport/test/
Dtest.cpp216 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
222 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
228 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
234 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
240 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
246 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
252 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
258 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
264 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
270 const uint32_t command = CMD_ID((app_id)) | CMD_IS_READ | CMD_TRANSPORT; \
[all …]
/external/nos/host/generic/libnos_transport/
Dtransport.c160 const uint32_t command = CMD_ID(ctx->app_id) | CMD_IS_READ | CMD_TRANSPORT; in get_status()
211 const uint32_t command = CMD_ID(ctx->app_id) | CMD_TRANSPORT; in clear_status()
277 uint32_t command = CMD_ID(ctx->app_id) | CMD_IS_DATA | CMD_TRANSPORT; in send_command()
303 command = CMD_ID(ctx->app_id) | CMD_PARAM(ctx->params); in send_command()
412 uint32_t command = CMD_ID(ctx->app_id) | CMD_IS_READ | CMD_TRANSPORT | CMD_IS_DATA; in receive_reply()
/external/nos/host/generic/nugget/include/
Dapplication.h106 #define CMD_ID(id) (((id) & 0x000000ff) << 16) macro