Searched refs:field (Results 26 - 42 of 42) sorted by relevance

12

/system/core/libcutils/tests/
H A Dfs_config.cpp152 #define endof(pointer, field) (offsetof(typeof(*(pointer)), field) + sizeof((pointer)->field))
/system/bt/doc/
H A Dpower_management.md51 the `spec_idx` field to index into `bta_dm_pm_spec` array to determine which
148 triggers `bta_dm_pm_btm_status`, with the timeout field set to TRUE. HCI
174 `prev_low` field is set, calls `bta_dm_pm_ssr` to re-send SSR params,
180 previous low power mode in the peer device's `prev_low` field.
182 `info` field's `BTA_DM_DI_USE_SSR` bit, depending on the value of
184 - If the status is `BTM_PM_STS_SNIFF` and the info field has the
188 device info field.
/system/extras/procrank/
H A Dprocrank.cpp47 #define declare_sort(field) \
48 static int sort_by_ ## field (const void *a, const void *b)
593 #define create_sort(field, compfn) \
594 static int sort_by_ ## field (const void *a, const void *b) { \
596 ((struct proc_info*)(a))->usage.field, \
597 ((struct proc_info*)(b))->usage.field \
/system/core/libnativebridge/
H A Dnative_bridge.cc343 static void SetCpuAbi(JNIEnv* env, jclass build_class, const char* field, const char* value) { argument
345 jfieldID field_id = env->GetStaticFieldID(build_class, field, "Ljava/lang/String;");
348 ALOGW("Could not find %s field.", field);
/system/bt/vendor_libs/test_vendor_lib/src/
H A Ddual_mode_controller.cc61 bool ParseUint8t(const base::StringPiece& value, uint8_t* field) { argument
62 *field = std::stoi(value.as_string());
66 bool ParseUint16t(const base::StringPiece& value, uint16_t* field) { argument
67 *field = std::stoi(value.as_string());
728 #define REGISTER_UINT8_T(field_name, field) \
730 field_name, &DualModeController::Properties::field, &ParseUint8t);
731 #define REGISTER_UINT16_T(field_name, field) \
733 field_name, &DualModeController::Properties::field, &ParseUint16t);
/system/keymaster/
H A DAndroid.mk38 LOCAL_CLANG_CFLAGS += -Wno-error=unused-const-variable -Wno-error=unused-private-field
/system/tools/aidl/
H A Dast_cpp.cpp90 for (const auto& field : fields_) {
91 if (field.value.empty()) {
92 to->Write(" %s,\n", field.key.c_str());
94 to->Write(" %s = %s,\n", field.key.c_str(), field.value.c_str());
/system/update_engine/payload_generator/
H A Dinplace_generator.cc679 for (int field = READER; field < BLOCK_FIELD_COUNT; field++) {
680 const char* past_participle = (field == READER) ? "read" : "written";
682 (field == READER) ? operation.src_extents() : operation.dst_extents();
683 Vertex::Index Block::*access_type = (field == READER) ?
/system/extras/ext4_utils/include/ext4_utils/
H A Dext4.h305 #define EXT4_FITS_IN_INODE(ext4_inode, einode, field) ((offsetof(typeof(*(ext4_inode)), field) + sizeof((ext4_inode)->field)) <= (EXT4_GOOD_OLD_INODE_SIZE + (einode)->i_extra_isize))
/system/core/libpixelflinger/include/private/pixelflinger/
H A Dggl_context.h124 #define GGL_OFFSETOF(field) uintptr_t(&(((context_t*)0)->field))
344 // Keep the following struct field types in line with the corresponding
/system/vold/
H A DAndroid.mk84 vold_cflags := -Werror -Wall -Wno-missing-field-initializers -Wno-unused-variable -Wno-unused-parameter
H A Dcryptfs.cpp2565 * Test if key is part of the multi-entry (field, index) sequence. Return non-zero if key is in the
2568 static int match_multi_entry(const char *key, const char *field, unsigned index) { argument
2571 field_len = strlen(field);
2574 // The first key in a multi-entry field is just the filedname itself.
2575 if (!strcmp(key, field)) {
2579 // Match key against "%s_%d" % (field, index)
2584 if (strncmp(key, field, field_len)) {
2585 // If the key does not begin with field, it's not a match.
2595 * Delete entry/entries from persist_data. If the entries are part of a multi-segment field, all
2598 * PERSIST_DEL_KEY_ERROR_NO_FIELD if the field doe
[all...]
/system/bt/service/client/
H A Dmain.cc321 void PrintFieldAndValue(const string& field, const string& value) { argument
322 cout << COLOR_BOLDWHITE << field << ": " << COLOR_BOLDYELLOW << value
326 void PrintFieldAndBoolValue(const string& field, bool value) { argument
327 PrintFieldAndValue(field, (value ? "true" : "false"));
/system/tools/hidl/
H A Dhidl-gen_y.yy271 %type<field> field_declaration
296 android::CompoundField *field;
/system/core/adb/
H A DAndroid.mk16 -Wno-missing-field-initializers \
/system/extras/perfprofd/quipper/
H A Dperf_reader.cc49 // The type of the number of nodes field in NUMA topology.
114 // If field points to the start of a bitfield padded to len bytes, this
118 void SwapBitfieldOfBits(u8* field, size_t len) { argument
120 field[i] = ReverseByte(field[i]);
155 // Passing "" to |build_id| or |filename| will leave the corresponding field
161 // |header.misc| field of new events.
1018 // the struct definition. Check against perf_event_attr's |size| field.
/system/media/camera/tests/
H A Dcamera_metadata_tests.cpp42 ({struct _AlignasStruct { char c; T field; }; \
43 offsetof(struct _AlignasStruct, field); })
942 FAIL() << "Unknown type field encountered:" << type;

Completed in 624 milliseconds

12