HomeSort by relevance Sort by last modified time
    Searched refs:is_primary (Results 1 - 25 of 60) sorted by null

1 2 3

  /system/bt/service/hal/
gatt_helpers.cpp 29 hal_id->is_primary = id.is_primary();
39 "", srvc_id.id.inst_id, uuid, srvc_id.is_primary);
  /hardware/libhardware/include/hardware/
bt_gatt_types.h 43 uint8_t is_primary; member in struct:__anon30694
  /system/bt/service/common/bluetooth/
gatt_identifier.h 41 bool is_primary);
53 bool is_primary,
85 bool is_primary() const { return is_primary_; } function in class:bluetooth::final
gatt_identifier.cpp 33 bool is_primary) {
43 gatt_id->is_primary_ = is_primary;
100 bool is_primary,
108 is_primary_(is_primary),
  /system/bt/service/doc/
IBluetoothGattClientCallback.txt 35 * structure. |is_primary| is true if this refers to a primary service,
38 void onGetService(in boolean is_primary, in GattIdentifier service_id);
IBluetoothGattServer.txt 53 boolean beginServiceDeclaration(in int server_if, in boolean is_primary,
  /system/bt/service/common/bluetooth/binder/
IBluetoothGattServer.h 68 int server_if, bool is_primary, const bluetooth::UUID& uuid,
130 int server_if, bool is_primary, const bluetooth::UUID& uuid,
IBluetoothGattServer.cpp 65 bool is_primary = data.readInt32(); local
71 server_if, is_primary, *uuid, &out_id);
207 int server_if, bool is_primary, const bluetooth::UUID& uuid,
214 data.writeInt32(is_primary);
parcel_helpers.cpp 148 parcel->writeInt32(gatt_id.is_primary());
162 bool is_primary = parcel.readInt32(); local
174 device_address, is_primary,
  /external/autotest/client/cros/multimedia/
display_info.py 46 self.is_primary = d['isPrimary']
  /system/bt/bta/gatt/
bta_gattc_cache.c 142 APPL_TRACE_ERROR("\t rec[%d] uuid[0x%04x] s_handle[%d] e_handle[%d] is_primary[%d]",
143 i + 1, pp->uuid.uu.uuid16, pp->s_handle, pp->e_handle, pp->is_primary);
203 BOOLEAN is_primary)
214 p_new_srvc->is_primary = is_primary;
500 p_rec->is_primary) == 0)
648 tBT_UUID uuid, BOOLEAN is_primary)
662 p_rec->is_primary = is_primary;
    [all...]
bta_gatts_api.c 138 ** is_primary: is this service a primary one or not.
144 UINT16 num_handle, BOOLEAN is_primary)
154 p_buf->is_pri = is_primary;
  /system/bt/service/ipc/binder/
bluetooth_gatt_server_binder_server.h 47 int server_id, bool is_primary, const bluetooth::UUID& uuid,
bluetooth_gatt_server_binder_server.cpp 55 int server_id, bool is_primary, const bluetooth::UUID& uuid,
67 auto service_id = gatt_server->BeginServiceDeclaration(uuid, is_primary);
  /system/bt/test/suite/gatt/
gatt_unittest.cpp 112 srvc_id.is_primary = 1; // this service is primary.
  /system/bt/service/
gatt_server.h 140 const UUID& uuid, bool is_primary);
252 bool is_primary);
gatt_server.cpp 77 const UUID& uuid, bool is_primary) {
80 << ", is_primary: " << is_primary;
92 auto service_id = GetIdForService(uuid, is_primary);
215 const UUID& uuid, bool is_primary) {
230 return GattIdentifier::CreateServiceId("", inst_id, uuid, is_primary);
  /system/bt/bta/include/
bta_gatt_api.h 241 BOOLEAN is_primary; /* used when attribute type is service */ member in struct:__anon73064
435 BOOLEAN is_primary; /* primary service or secondary */ member in struct:__anon73079
496 BOOLEAN is_primary; member in struct:__anon73082
564 BOOLEAN is_primary; member in struct:__anon73089
    [all...]
  /packages/providers/ContactsProvider/tests/assets/upgradeTest/
contacts2_1108.sql 34 CREATE TABLE data (_id INTEGER PRIMARY KEY AUTOINCREMENT,package_id INTEGER REFERENCES package(_id),mimetype_id INTEGER REFERENCES mimetype(_id) NOT NULL,raw_contact_id INTEGER REFERENCES raw_contacts(_id) NOT NULL,hash_id TEXT,is_read_only INTEGER NOT NULL DEFAULT 0,is_primary INTEGER NOT NULL DEFAULT 0,is_super_primary INTEGER NOT NULL DEFAULT 0,data_version INTEGER NOT NULL DEFAULT 0,data1 TEXT,data2 TEXT,data3 TEXT,data4 TEXT,data5 TEXT,data6 TEXT,data7 TEXT,data8 TEXT,data9 TEXT,data10 TEXT,data11 TEXT,data12 TEXT,data13 TEXT,data14 TEXT,data15 TEXT,data_sync1 TEXT, data_sync2 TEXT, data_sync3 TEXT, data_sync4 TEXT, carrier_presence INTEGER NOT NULL DEFAULT 0 );
139 CREATE VIEW view_data AS SELECT data._id AS _id,hash_id, raw_contact_id, raw_contacts.contact_id AS contact_id, raw_contacts.account_id,accounts.account_name AS account_name,accounts.account_type AS account_type,accounts.data_set AS data_set,(CASE WHEN accounts.data_set IS NULL THEN accounts.account_type ELSE accounts.account_type||'/'||accounts.data_set END) AS account_type_and_data_set,raw_contacts.sourceid AS sourceid,raw_contacts.backup_id AS backup_id,raw_contacts.version AS version,raw_contacts.dirty AS dirty,raw_contacts.sync1 AS sync1,raw_contacts.sync2 AS sync2,raw_contacts.sync3 AS sync3,raw_contacts.sync4 AS sync4, is_primary, is_super_primary, data_version, data.package_id,package AS res_package,data.mimetype_id,mimetype AS mimetype, is_read_only, data1, data2, data3, data4, data5, data6, data7, data8, data9, data10, data11, data12, data13, data14, data15, carrier_presence, data_sync1, data_sync2, data_sync3, data_sync4, contacts.custom_ringtone AS custom_ringtone,contacts.send_to_voicemail AS send_to_voicemail,contacts.last_time_contacted AS last_time_contacted,contacts.times_contacted AS times_contacted,contacts.starred AS starred,contacts.pinned AS pinned, name_raw_contact.display_name_source AS display_name_source, name_raw_contact.display_name AS display_name, name_raw_contact.display_name_alt AS display_name_alt, name_raw_contact.phonetic_name AS phonetic_name, name_raw_contact.phonetic_name_style AS phonetic_name_style, name_raw_contact.sort_key AS sort_key, name_raw_contact.phonebook_label AS phonebook_label, name_raw_contact.phonebook_bucket AS phonebook_bucket, name_raw_contact.sort_key_alt AS sort_key_alt, name_raw_contact.phonebook_label_alt AS phonebook_label_alt, name_raw_contact.phonebook_bucket_alt AS phonebook_bucket_alt, has_phone_number, name_raw_contact_id, lookup, photo_id, photo_file_id, CAST(EXISTS (SELECT _id FROM visible_contacts WHERE contacts._id=visible_contacts._id) AS INTEGER) AS in_visible_group, CAST(EXISTS (SELECT _id FROM default_directory WHERE contacts._id=default_directory._id) AS INTEGER) AS in_default_directory, status_update_id, contacts.contact_last_updated_timestamp, (CASE WHEN photo_file_id IS NULL THEN (CASE WHEN photo_id IS NULL OR photo_id=0 THEN NULL ELSE 'content://com.android.contacts/contacts/'||raw_contacts.contact_id|| '/photo' END) ELSE 'content://com.android.contacts/display_photo/'||photo_file_id END) AS photo_uri, (CASE WHEN photo_id IS NULL OR photo_id=0 THEN NULL ELSE 'content://com.android.contacts/contacts/'||raw_contacts.contact_id|| '/photo' END) AS photo_thumb_uri, 0 AS raw_contact_is_user_profile, groups.sourceid AS group_sourceid FROM data JOIN mimetypes ON (data.mimetype_id=mimetypes._id) JOIN raw_contacts ON (data.raw_contact_id=raw_contacts._id) JOIN accounts ON (raw_contacts.account_id=accounts._id) JOIN contacts ON (raw_contacts.contact_id=contacts._id) JOIN raw_contacts AS name_raw_contact ON(name_raw_contact_id=name_raw_contact._id) LEFT OUTER JOIN packages ON (data.package_id=packages._id) LEFT OUTER JOIN groups ON (mimetypes.mimetype='vnd.android.cursor.item/group_membership' AND groups._id=data.data1);
142 CREATE VIEW view_raw_entities AS SELECT contact_id, raw_contacts.deleted AS deleted,raw_contacts.metadata_dirty, is_primary, is_super_primary, data_version, data.package_id,package AS res_package,data.mimetype_id,mimetype AS mimetype, is_read_only, data1, data2, data3, data4, data5, data6, data7, data8, data9, data10, data11, data12, data13, data14, data15, carrier_presence, data_sync1, data_sync2, data_sync3, data_sync4, raw_contacts.account_id,accounts.account_name AS account_name,accounts.account_type AS account_type,accounts.data_set AS data_set,(CASE WHEN accounts.data_set IS NULL THEN accounts.account_type ELSE accounts.account_type||'/'||accounts.data_set END) AS account_type_and_data_set,raw_contacts.sourceid AS sourceid,raw_contacts.backup_id AS backup_id,raw_contacts.version AS version,raw_contacts.dirty AS dirty,raw_contacts.sync1 AS sync1,raw_contacts.sync2 AS sync2,raw_contacts.sync3 AS sync3,raw_contacts.sync4 AS sync4, data_sync1, data_sync2, data_sync3, data_sync4, raw_contacts._id AS _id, data._id AS data_id,raw_contacts.starred AS starred,0 AS raw_contact_is_user_profile,groups.sourceid AS group_sourceid FROM raw_contacts JOIN accounts ON (raw_contacts.account_id=accounts._id) LEFT OUTER JOIN data ON (data.raw_contact_id=raw_contacts._id) LEFT OUTER JOIN packages ON (data.package_id=packages._id) LEFT OUTER JOIN mimetypes ON (data.mimetype_id=mimetypes._id) LEFT OUTER JOIN groups ON (mimetypes.mimetype='vnd.android.cursor.item/group_membership' AND groups._id=data.data1);
143 CREATE VIEW view_entities AS SELECT raw_contacts.contact_id AS _id, raw_contacts.contact_id AS contact_id, raw_contacts.deleted AS deleted,raw_contacts.metadata_dirty, is_primary, is_super_primary, data_version, data.package_id,package AS res_package,data.mimetype_id,mimetype AS mimetype, is_read_only, data1, data2, data3, data4, data5, data6, data7, data8, data9, data10, data11, data12, data13, data14, data15, carrier_presence, data_sync1, data_sync2, data_sync3, data_sync4, raw_contacts.account_id,accounts.account_name AS account_name,accounts.account_type AS account_type,accounts.data_set AS data_set,(CASE WHEN accounts.data_set IS NULL THEN accounts.account_type ELSE accounts.account_type||'/'||accounts.data_set END) AS account_type_and_data_set,raw_contacts.sourceid AS sourceid,raw_contacts.backup_id AS backup_id,raw_contacts.version AS version,raw_contacts.dirty AS dirty,raw_contacts.sync1 AS sync1,raw_contacts.sync2 AS sync2,raw_contacts.sync3 AS sync3,raw_contacts.sync4 AS sync4, contacts.custom_ringtone AS custom_ringtone, name_raw_contact.display_name_source AS display_name_source, name_raw_contact.display_name AS display_name, name_raw_contact.display_name_alt AS display_name_alt, name_raw_contact.phonetic_name AS phonetic_name, name_raw_contact.phonetic_name_style AS phonetic_name_style, name_raw_contact.sort_key AS sort_key, name_raw_contact.phonebook_label AS phonebook_label, name_raw_contact.phonebook_bucket AS phonebook_bucket, name_raw_contact.sort_key_alt AS sort_key_alt, name_raw_contact.phonebook_label_alt AS phonebook_label_alt, name_raw_contact.phonebook_bucket_alt AS phonebook_bucket_alt, has_phone_number, name_raw_contact_id, lookup, photo_id, photo_file_id, CAST(EXISTS (SELECT _id FROM visible_contacts WHERE contacts._id=visible_contacts._id) AS INTEGER) AS in_visible_group, CAST(EXISTS (SELECT _id FROM default_directory WHERE contacts._id=default_directory._id) AS INTEGER) AS in_default_directory, status_update_id, contacts.contact_last_updated_timestamp, contacts.last_time_contacted AS last_time_contacted, contacts.send_to_voicemail AS send_to_voicemail, contacts.starred AS starred, contacts.pinned AS pinned, contacts.times_contacted AS times_contacted, (CASE WHEN photo_file_id IS NULL THEN (CASE WHEN photo_id IS NULL OR photo_id=0 THEN NULL ELSE 'content://com.android.contacts/contacts/'||raw_contacts.contact_id|| '/photo' END) ELSE 'content://com.android.contacts/display_photo/'||photo_file_id END) AS photo_uri, (CASE WHEN photo_id IS NULL OR photo_id=0 THEN NULL ELSE 'content://com.android.contacts/contacts/'||raw_contacts.contact_id|| '/photo' END) AS photo_thumb_uri, 0 AS is_user_profile, data_sync1, data_sync2, data_sync3, data_sync4, raw_contacts._id AS raw_contact_id, data._id AS data_id,groups.sourceid AS group_sourceid FROM raw_contacts JOIN accounts ON (raw_contacts.account_id=accounts._id) JOIN contacts ON (raw_contacts.contact_id=contacts._id) JOIN raw_contacts AS name_raw_contact ON(name_raw_contact_id=name_raw_contact._id) LEFT OUTER JOIN data ON (data.raw_contact_id=raw_contacts._id) LEFT OUTER JOIN packages ON (data.package_id=packages._id) LEFT OUTER JOIN mimetypes ON (data.mimetype_id=mimetypes._id) LEFT OUTER JOIN groups ON (mimetypes.mimetype='vnd.android.cursor.item/group_membership' AND groups._id=data.data1);
    [all...]
  /system/bt/btif/src/
btif_gatt_server.c 210 srvc_id.is_primary = p_data->create.is_primary;
449 p_cb->srvc_id.is_primary);
  /hardware/qcom/camera/QCamera2/stack/common/
mm_jpeg_interface.h 88 uint8_t is_primary; member in struct:__anon31645
  /hardware/qcom/camera/msmcobalt/QCamera2/stack/common/
mm_jpeg_interface.h 88 uint8_t is_primary; member in struct:__anon32301
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9/gcov-src/
gcov-io.h 412 gcov_unsigned_t is_primary; /* this is overloaded to mean two things: member in struct:gcov_module_info
414 (2) means IS_PRIMARY in persistent file or
libgcov-driver.c     [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/gcov-src/
gcov-io.h 412 gcov_unsigned_t is_primary; /* this is overloaded to mean two things: member in struct:gcov_module_info
414 (2) means IS_PRIMARY in persistent file or

Completed in 740 milliseconds

1 2 3