OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_command
(Results
1 - 5
of
5
) sorted by null
/external/bluetooth/bluedroid/stack/include/
rfcdefs.h
106
#define RFCOMM_CR(initiator,
is_command
) \
107
(( ( (initiator) && (
is_command
)) \
108
|| (!(initiator) && !(
is_command
))) << 1)
110
#define RFCOMM_I_CR(
is_command
) ((
is_command
) ? 0x02 : 0x00)
/external/bluetooth/bluedroid/stack/rfcomm/
rfc_int.h
292
extern void rfc_process_pn (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
, MX_FRAME *p_frame);
293
extern void rfc_process_msc (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
, MX_FRAME *p_frame);
294
extern void rfc_process_rpn (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
, BOOLEAN is_request, MX_FRAME *p_frame);
295
extern void rfc_process_rls (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
, MX_FRAME *p_frame);
298
extern void rfc_process_fcon (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
);
299
extern void rfc_process_fcoff (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
);
330
extern void rfc_send_pn (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN
is_command
, UINT16 mtu,
332
extern void rfc_send_test (tRFC_MCB *p_rfc_mcb, BOOLEAN
is_command
, BT_HDR *p_buf);
333
extern void rfc_send_msc (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN
is_command
,
335
extern void rfc_send_rls (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN
is_command
, UINT8 status)
[
all
...]
rfc_ts_frames.c
231
void rfc_send_pn (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN
is_command
, UINT16 mtu, UINT8 cl, UINT8 k)
242
*p_data++ = RFCOMM_EA | RFCOMM_I_CR(
is_command
) | RFCOMM_MX_PN;
251
if (
is_command
)
276
void rfc_send_fcon (tRFC_MCB *p_mcb, BOOLEAN
is_command
)
287
*p_data++ = RFCOMM_EA | RFCOMM_I_CR(
is_command
) | RFCOMM_MX_FCON;
304
void rfc_send_fcoff (tRFC_MCB *p_mcb, BOOLEAN
is_command
)
315
*p_data++ = RFCOMM_EA | RFCOMM_I_CR(
is_command
) | RFCOMM_MX_FCOFF;
332
void rfc_send_msc (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN
is_command
,
355
*p_data++ = RFCOMM_EA | RFCOMM_I_CR(
is_command
) | RFCOMM_MX_MSC;
386
void rfc_send_rls (tRFC_MCB *p_mcb, UINT8 dlci, BOOLEAN
is_command
, UINT8 status
703
BOOLEAN
is_command
;
local
[
all
...]
rfc_port_fsm.c
534
void rfc_process_pn (tRFC_MCB *p_mcb, BOOLEAN
is_command
, MX_FRAME *p_frame)
539
if (
is_command
)
577
void rfc_process_rpn (tRFC_MCB *p_mcb, BOOLEAN
is_command
,
586
if (
is_command
)
597
if (
is_command
&& is_request)
609
if (
is_command
)
694
void rfc_process_msc (tRFC_MCB *p_mcb, BOOLEAN
is_command
, MX_FRAME *p_frame)
727
if (
is_command
)
765
void rfc_process_rls (tRFC_MCB *p_mcb, BOOLEAN
is_command
, MX_FRAME *p_frame)
769
if (
is_command
)
[
all
...]
/external/mksh/src/
edit.c
225
x_print_expansions(int nwords, char * const *words, bool
is_command
)
235
if (!
is_command
&&
592
bool
is_command
;
local
596
len = x_locate_word(buf, buflen, pos, startp, &
is_command
);
598
is_command
= false;
604
if (len == 0 &&
is_command
)
655
nwords =
is_command
?
664
if (
is_command
)
[
all
...]
Completed in 74 milliseconds