HomeSort by relevance Sort by last modified time
    Searched refs:BOOLEAN (Results 201 - 225 of 518) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libnfc-nci/src/nfc/int/
rw_int.h 118 BOOLEAN b_lock_read; /* Is the lock byte is already read from tag */
147 BOOLEAN b_update; /* Tag header updated */
148 BOOLEAN b_rseg; /* Segment 0 read from tag */
149 BOOLEAN b_hard_lock; /* Hard lock the tag as part of config tag to Read only */
296 BOOLEAN b_lock_read; /* Is the lock byte is already read from tag */
316 BOOLEAN b_read_hdr; /* Tag header read from tag */
317 BOOLEAN b_read_data; /* Tag data block read from tag */
318 BOOLEAN b_hard_lock; /* Hard lock the tag as part of config tag to Read only */
    [all...]
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_int.h 141 BOOLEAN inc_hdr;
195 BOOLEAN cong; /* TRUE, if congested */
213 BOOLEAN cong; /* TRUE, if congested */
447 BOOLEAN scn[BTA_JV_MAX_SCN]; /* SCN allocated by java */
475 extern BOOLEAN bta_jv_sm_execute(BT_HDR *p_msg);
  /external/bluetooth/bluedroid/main/
bte_conf.c 42 extern BOOLEAN hci_logging_enabled;
44 extern BOOLEAN trace_conf_enabled;
197 BOOLEAN name_matched;
265 static BOOLEAN bte_parse_did_conf (const char *p_path, UINT32 num,
269 BOOLEAN key=TRUE, conf_found=FALSE;
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_gap.c 57 static BOOLEAN btm_ble_start_adv(void);
86 BOOLEAN BTM_BleUpdateAdvWhitelist(BOOLEAN add_remove, BD_ADDR remote_bda)
150 tBTM_STATUS BTM_BleObserve(BOOLEAN start, UINT8 duration,
213 tBTM_STATUS BTM_BleBroadcast(BOOLEAN start)
299 BOOLEAN BTM_BleSetBgConnType(tBTM_BLE_CONN_TYPE bg_conn_type,
302 BOOLEAN started = TRUE;
363 BOOLEAN BTM_BleUpdateBgConnDev(BOOLEAN add_remove, BD_ADDR remote_bda)
365 BOOLEAN ret = TRUE
    [all...]
btm_sec.c 44 BOOLEAN (APPL_AUTH_WRITE_EXCEPTION)(BD_ADDR bd_addr);
50 static tBTM_SEC_SERV_REC *btm_sec_find_first_serv (BOOLEAN is_originator, UINT16 psm);
57 static BOOLEAN btm_sec_start_get_name (tBTM_SEC_DEV_REC *p_dev_rec);
58 static BOOLEAN btm_sec_start_authentication (tBTM_SEC_DEV_REC *p_dev_rec);
59 static BOOLEAN btm_sec_start_encryption (tBTM_SEC_DEV_REC *p_dev_rec);
71 static BOOLEAN btm_sec_queue_mx_request (BD_ADDR bd_addr, UINT16 psm, BOOLEAN is_orig,
76 static BOOLEAN btm_sec_check_prefetch_pin (tBTM_SEC_DEV_REC *p_dev_rec);
79 BOOLEAN btm_sec_are_all_trusted(UINT32 p_mask[]);
84 static BOOLEAN btm_sec_set_security_level ( CONNECTION_TYPE conn_type, char *p_name, UINT8 service_id
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
EscapingEvaluator.java 63 private boolean propagateEscapeStatus;
77 * @return Returns a {@code JavaExpression} representing a boolean expression that evaluates to
82 boolean propagateEscapeStatus) {
90 // This function generates a boolean expression that evaluates to true
94 // The interpreter mode equivalent of this boolean expression would be :
101 JavaExpression.infix(JavaExpression.Type.BOOLEAN, "!=", escapeMode, JavaExpression
104 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", escapeModeCheck,
113 public JavaExpression computeEscaping(PExpression expression, boolean propagateEscapeStatus) {
181 JavaExpression.Type.BOOLEAN, TemplateTranslator.CONTEXT, "isEscapingFunction",
192 callOn(JavaExpression.Type.BOOLEAN, TemplateTranslator.CONTEXT, "isEscapingFunction"
    [all...]
JavaExpression.java 55 BOOLEAN("boolean") {
61 return call(Type.BOOLEAN, "asBoolean", expression);
132 * The Java literal representing the type (e.g. "int", "boolean", "Value")
202 boolean seenAnyParams = false;
300 * A JavaExpression to represent boolean literal values ('true' or 'false').
304 private final boolean value;
309 private BooleanLiteralExpression(boolean value) {
310 super(Type.BOOLEAN);
314 public boolean getValue()
    [all...]
TemplateTranslator.java 121 private boolean propagateEscapeStatus;
182 boolean propagateEscapeStatus) {
341 java.startIfBlock(JavaExpression.infix(Type.BOOLEAN, "!=", value.cast(Type.DATA), literal(
344 // Cast to string so we support numeric or boolean values as well.
427 java.startIfBlock(call(Type.BOOLEAN, "validateLoopArgs", startVar, endVar, incrVar));
438 inlineIf(Type.BOOLEAN, infix(Type.BOOLEAN, ">=", incrVar, integer(0)), infix(Type.BOOLEAN,
439 "<=", loopVar, endVar), infix(Type.BOOLEAN, ">=", loopVar, endVar));
443 loopVariable).cast(Type.STRING), infix(Type.BOOLEAN, "==", symbol(loopVariable), startVar)
    [all...]
  /external/bluetooth/bluedroid/stack/sdp/
sdp_api.c 66 ** Returns BOOLEAN
71 BOOLEAN SDP_InitDiscoveryDb (tSDP_DISCOVERY_DB *p_db, UINT32 len, UINT16 num_uuid,
121 BOOLEAN SDP_CancelServiceSearch (tSDP_DISCOVERY_DB *p_db)
145 BOOLEAN SDP_ServiceSearchRequest (UINT8 *p_bd_addr, tSDP_DISCOVERY_DB *p_db,
182 BOOLEAN SDP_ServiceSearchAttributeRequest (UINT8 *p_bd_addr, tSDP_DISCOVERY_DB *p_db,
219 BOOLEAN SDP_ServiceSearchAttributeRequest2 (UINT8 *p_bd_addr, tSDP_DISCOVERY_DB *p_db,
338 BOOLEAN SDP_FindServiceUUIDInRec(tSDP_DISC_REC *p_rec, tBT_UUID * p_uuid)
419 BOOLEAN SDP_FindServiceUUIDInRec_128bit(tSDP_DISC_REC *p_rec, tBT_UUID * p_uuid)
728 static BOOLEAN sdp_fill_proto_elem( tSDP_DISC_ATTR *p_attr, UINT16 layer_uuid,
788 BOOLEAN SDP_FindProtocolListElemInRec (tSDP_DISC_REC *p_rec, UINT16 layer_uuid, tSDP_PROTOCOL_ELEM *p_elem
    [all...]
  /external/libnfc-nci/src/nfa/p2p/
nfa_p2p_act.c 223 BOOLEAN nfa_p2p_start_sdp (char *p_service_name, UINT8 local_sap)
674 BOOLEAN nfa_p2p_reg_server (tNFA_P2P_MSG *p_msg)
745 BOOLEAN nfa_p2p_reg_client (tNFA_P2P_MSG *p_msg)
792 BOOLEAN nfa_p2p_dereg (tNFA_P2P_MSG *p_msg)
855 BOOLEAN nfa_p2p_accept_connection (tNFA_P2P_MSG *p_msg)
884 BOOLEAN nfa_p2p_reject_connection (tNFA_P2P_MSG *p_msg)
912 BOOLEAN nfa_p2p_disconnect (tNFA_P2P_MSG *p_msg)
971 BOOLEAN nfa_p2p_create_data_link_connection (tNFA_P2P_MSG *p_msg)
    [all...]
nfa_p2p_main.c 49 static BOOLEAN nfa_p2p_evt_hdlr (BT_HDR *p_msg);
77 typedef BOOLEAN (*tNFA_P2P_ACTION) (tNFA_P2P_MSG *p_data);
562 void nfa_p2p_enable_listening (tNFA_SYS_ID sys_id, BOOLEAN update_wks)
621 void nfa_p2p_disable_listening (tNFA_SYS_ID sys_id, BOOLEAN update_wks)
706 static BOOLEAN nfa_p2p_evt_hdlr (BT_HDR *p_hdr)
708 BOOLEAN delete_msg = TRUE;
  /external/bluetooth/bluedroid/stack/pan/
pan_main.c 97 BOOLEAN is_role_change)
101 BOOLEAN wrong_uuid;
332 void pan_connect_state_cb (UINT16 handle, BD_ADDR rem_bda, tBNEP_RESULT result, BOOLEAN is_role_change)
439 BOOLEAN ext)
443 BOOLEAN forward;
543 BOOLEAN ext)
549 BOOLEAN forward = FALSE;
677 BOOLEAN indication,
715 BOOLEAN indication,
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_nci.c 60 BOOLEAN disp_again = FALSE;
179 static BOOLEAN nfc_hal_nci_receive_nci_msg (tNFC_HAL_NCIT_CB *p_cb, UINT8 byte)
182 BOOLEAN msg_received = FALSE;
276 static BOOLEAN nfc_hal_nci_receive_bt_msg (tNFC_HAL_NCIT_CB *p_cb, UINT8 byte)
279 BOOLEAN msg_received = FALSE;
476 BOOLEAN nfc_hal_nci_receive_msg (UINT8 byte)
479 BOOLEAN msg_received = FALSE;
524 BOOLEAN nfc_hal_nci_preproc_rx_nci_msg (NFC_HDR *p_msg)
712 BOOLEAN continue_to_process = TRUE;
  /external/libnfc-nci/src/nfa/dm/
nfa_dm_api.c 141 tNFA_STATUS NFA_Disable (BOOLEAN graceful)
675 NFC_API extern tNFA_STATUS NFA_Deactivate (BOOLEAN sleep_mode)
772 tNFA_STATUS NFA_RegisterNDefTypeHandler (BOOLEAN handle_whole_message,
829 NFC_API extern tNFA_STATUS NFA_RegisterNDefUriHandler (BOOLEAN handle_whole_message,
    [all...]
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_link.c 41 static BOOLEAN l2c_link_send_to_lower (tL2C_LCB *p_lcb, BT_HDR *p_buf);
59 BOOLEAN l2c_link_hci_conn_req (BD_ADDR bd_addr)
64 BOOLEAN no_links;
154 BOOLEAN l2c_link_hci_conn_comp (UINT8 status, UINT16 handle, BD_ADDR p_bda)
357 BOOLEAN l2c_link_hci_disc_comp (UINT16 handle, UINT8 reason)
361 BOOLEAN status = TRUE;
362 BOOLEAN lcb_is_free = TRUE;
463 BOOLEAN l2c_link_hci_qos_violation (UINT16 handle)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 34 /** {@code non-null;} instance corresponding to the class {@code Boolean} */
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
61 /** {@code non-null;} instance corresponding to the type {@code boolean[]} */
105 case Type.BT_BOOLEAN: return BOOLEAN;
168 public boolean equals(Object other) {
209 public boolean isCategory2() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 33 /** {@code non-null;} instance corresponding to the class {@code Boolean} */
34 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
60 /** {@code non-null;} instance corresponding to the type {@code boolean[]} */
104 case Type.BT_BOOLEAN: return BOOLEAN;
158 public boolean equals(Object other) {
199 public boolean isCategory2() {
  /external/bluetooth/bluedroid/bta/dm/
bta_dm_main.c 276 BOOLEAN bta_dm_sm_execute(BT_HDR *p_msg)
318 BOOLEAN bta_dm_search_sm_execute(BT_HDR *p_msg)
  /external/bluetooth/bluedroid/bta/pan/
bta_pan_main.c 373 BOOLEAN bta_pan_hdl_event(BT_HDR *p_msg)
376 BOOLEAN freebuf = TRUE;
  /external/bluetooth/bluedroid/stack/avrc/
avrc_sdp.c 119 BOOLEAN result = TRUE;
199 BOOLEAN result = TRUE;
  /external/bluetooth/bluedroid/stack/include/
avrc_api.h 618 AVRC_API extern BOOLEAN AVRC_IsValidAvcType(UINT8 pdu_id, UINT8 avc_type);
630 AVRC_API extern BOOLEAN AVRC_IsValidPlayerAttr(UINT8 attr);
btu.h 218 BOOLEAN checked_hcisu;
244 BOOLEAN reset_complete; /* TRUE after first ack from device received */
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstType.java 34 /** {@code non-null;} instance corresponding to the class {@code Boolean} */
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
61 /** {@code non-null;} instance corresponding to the type {@code boolean[]} */
105 case Type.BT_BOOLEAN: return BOOLEAN;
159 public boolean equals(Object other) {
200 public boolean isCategory2() {
  /external/webkit/Source/WebKit2/Platform/
WorkQueue.h 96 // FIXME: Use an atomic boolean here instead.
143 static void CALLBACK handleCallback(void* context, BOOLEAN timerOrWaitFired);
144 static void CALLBACK timerCallback(void* context, BOOLEAN timerOrWaitFired);
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 40 private boolean[] declared;
41 private boolean[] specified;
48 declared = EmptyArray.BOOLEAN;
49 specified = EmptyArray.BOOLEAN;
82 public boolean isDeclared (int index)
95 public boolean isDeclared (String uri, String localName)
111 public boolean isDeclared (String qName)
130 public boolean isSpecified (int index)
149 public boolean isSpecified (String uri, String localName)
169 public boolean isSpecified (String qName
    [all...]

Completed in 1505 milliseconds

1 2 3 4 5 6 7 891011>>