/system/media/camera/docs/ |
D | metadata_model_test.py | 10 kind = Kind("some_root_kind", parent=None) 11 ins_outer = InnerNamespace("static", parent=kind) 12 kind._namespaces = [ins_outer] 16 entry1 = Entry(name="entry1", type="int32", kind="static", 18 entry2 = Entry(name="entry2", type="int32", kind="static", 20 entry3 = Entry(name="entry3", type="int32", kind="static", 38 self.assertEquals(kind, combined_children_namespace.parent) 62 entry1 = Entry(name="entry1", type="int32", kind="static", 64 entry2 = Entry(name="entry2", type="int32", kind="static", 96 entry1 = Entry(name="entry1", type="int32", kind="static", [all …]
|
D | metadata_model.py | 304 self._entry_map[e.kind][e.name] = e 323 self._entry_map[c.kind][c.name] = c 351 self._entry_map[p.kind].pop(p.name) 354 def is_entry_this_kind(self, entry, kind): argument 365 if kind not in ("static", "dynamic", "controls"): 366 assert(False), "Unknown kind value " + kind 368 return entry.name in self._entry_map[kind] 492 for kind in section.kinds: 493 kind._leafs = [] 496 group_entry_by_kind = itertools.groupby(section._leafs, lambda x: x.kind) [all …]
|
D | html.mako | 30 ….kind { color: #eeeeee; font-size: 1.2em; font-weight: bold; padding-left: 1.5em; background-color… 116 # Convert node name "x.y.z" of kind w to an HTML anchor of form 119 return '<a href="#%s_%s">%s</a>' % (node.kind, node.name, node.name) 186 % for kind in section.merged_kinds: # dynamic,static,controls 188 <span class="toc_kind_header">${kind.name}</span> 190 ${ insert_toc_body(kind)}\ 225 % for kind in section.merged_kinds: # dynamic,static,controls 226 <tr><td colspan="7" class="kind">${kind.name}</td></tr> 257 <tr class="entry" id="${prop.kind}_${prop.name}"> 393 ${insert_body(kind)} [all …]
|
D | metadata_template.mako | 51 % for kind in section.kinds: # dynamic,static,controls 52 <${kind.name}> 72 <clone entry="${prop.name}" kind="${prop.target_kind}" 231 ${insert_body(kind)} 233 </${kind.name}> 234 % endfor # for each kind
|
D | extension_camera_metadata_tags.mako | 35 % if entry.kind == 'dynamic':
|
D | CaptureResultTest.mako | 27 % if entry.kind == 'dynamic' and entry.visibility in ("public", "java_public"):
|
D | CameraDeviceInfo.mako | 27 % if entry.kind == 'static' and entry.visibility in \
|
/system/vold/ |
D | VoldNativeServiceValidation.cpp | 108 binder::Status CheckIncrementalPath(IncrementalPathKind kind, const std::string& path) { in CheckIncrementalPath() argument 112 if (kind == IncrementalPathKind::MountSource || kind == IncrementalPathKind::MountTarget || in CheckIncrementalPath() 113 kind == IncrementalPathKind::Any) { in CheckIncrementalPath() 115 if (kind != IncrementalPathKind::MountSource && in CheckIncrementalPath() 119 if (kind != IncrementalPathKind::MountTarget && in CheckIncrementalPath() 126 if (kind == IncrementalPathKind::Bind || kind == IncrementalPathKind::Any) { in CheckIncrementalPath()
|
D | VoldNativeServiceValidation.h | 40 binder::Status CheckIncrementalPath(IncrementalPathKind kind, const std::string& path);
|
/system/tools/hidl/ |
D | ConstantExpression.cpp | 61 static inline bool isSupported(ScalarType::Kind kind) { in isSupported() argument 62 return SK(BOOL) == kind || ScalarType(kind, nullptr /* parent */).isValidEnumStorageType(); in isSupported() 166 std::unique_ptr<ConstantExpression> ConstantExpression::Zero(ScalarType::Kind kind) { in Zero() argument 167 return ValueOf(kind, 0); in Zero() 170 std::unique_ptr<ConstantExpression> ConstantExpression::One(ScalarType::Kind kind) { in One() argument 171 return ValueOf(kind, 1); in One() 174 std::unique_ptr<ConstantExpression> ConstantExpression::ValueOf(ScalarType::Kind kind, in ValueOf() argument 176 return std::make_unique<LiteralConstantExpression>(kind, value); in ValueOf() 185 LiteralConstantExpression::LiteralConstantExpression(ScalarType::Kind kind, uint64_t value, in LiteralConstantExpression() argument 189 CHECK(isSupported(kind)); in LiteralConstantExpression() [all …]
|
D | ConstantExpression.h | 45 static std::unique_ptr<ConstantExpression> Zero(ScalarType::Kind kind); 46 static std::unique_ptr<ConstantExpression> One(ScalarType::Kind kind); 47 static std::unique_ptr<ConstantExpression> ValueOf(ScalarType::Kind kind, uint64_t value); 174 LiteralConstantExpression(ScalarType::Kind kind, uint64_t value); 175 LiteralConstantExpression(ScalarType::Kind kind, uint64_t value, const std::string& expr);
|
D | ScalarType.cpp | 27 ScalarType::ScalarType(Kind kind, Scope* parent) in ScalarType() argument 28 : Type(parent, hidlIdentifiers[kind]), mKind(kind) {} in ScalarType()
|
D | ScalarType.h | 40 ScalarType(Kind kind, Scope* parent);
|
/system/nfc/src/rust/test/ |
D | main.rs | 27 pub fn nfc_callback(kind: u16, val: &[u8]) { in nfc_callback() 28 debug!("Callback#{} -> {:?}", kind, val); in nfc_callback()
|
/system/core/debuggerd/client/ |
D | debuggerd_client.cpp | 206 auto get_response = [&output_fd](const char* kind, int sockfd, InterceptResponse* response) { in debuggerd_trigger_dump() argument 209 log_error(output_fd, 0, "failed to read %s response from tombstoned: timeout reached?", kind); in debuggerd_trigger_dump() 212 log_error(output_fd, errno, "failed to read %s response from tombstoned", kind); in debuggerd_trigger_dump() 218 kind, sizeof(*response), rc); in debuggerd_trigger_dump()
|
/system/tools/aidl/ |
D | check_valid.cpp | 82 const auto kind = IsListOf(type, IsInterface) ? "List" : "Array"; in CheckValid() local 83 AIDL_ERROR(type) << kind << " of interfaces is available since SDK = " << valid_version in CheckValid()
|
D | generate_rust.cpp | 126 const MethodKind kind = MethodKind::NORMAL) { in BuildMethod() argument 130 switch (kind) { in BuildMethod() 145 switch (kind) { in BuildMethod() 284 const MethodKind kind) { in GenerateClientMethod() argument 286 out << BuildMethod(method, typenames, kind) << " {\n"; in GenerateClientMethod() 294 switch (kind) { in GenerateClientMethod() 313 switch (kind) { in GenerateClientMethod() 349 switch (kind) { in GenerateClientMethod() 701 MethodKind kind = method->IsOneway() ? MethodKind::READY_FUTURE : MethodKind::BOXED_FUTURE; in GenerateRustInterface() local 704 *code_writer << BuildMethod(*method, typenames, kind) << ";\n"; in GenerateRustInterface() [all …]
|
/system/security/prng_seeder/src/ |
D | main.rs | 62 if e.kind() != ErrorKind::NotFound { in get_socket() 106 Err(e) if e.kind() == ErrorKind::Interrupted => {} in listen_loop()
|
/system/core/libutils/abi-dumps/arm64/source-based/ |
D | libutils.so.lsdump | 13462 "kind" : "offset_to_top" 13465 "kind" : "rtti", 13475 "kind" : "complete_dtor_pointer", 13479 "kind" : "deleting_dtor_pointer", 13523 "kind" : "offset_to_top" 13526 "kind" : "rtti", 13530 "kind" : "complete_dtor_pointer", 13534 "kind" : "deleting_dtor_pointer", 13602 "kind" : "offset_to_top" 13605 "kind" : "rtti", [all …]
|
/system/core/libutils/abi-dumps/arm_arm64/source-based/ |
D | libutils.so.lsdump | 13502 "kind" : "offset_to_top" 13505 "kind" : "rtti", 13515 "kind" : "complete_dtor_pointer", 13519 "kind" : "deleting_dtor_pointer", 13563 "kind" : "offset_to_top" 13566 "kind" : "rtti", 13570 "kind" : "complete_dtor_pointer", 13574 "kind" : "deleting_dtor_pointer", 13642 "kind" : "offset_to_top" 13645 "kind" : "rtti", [all …]
|
/system/core/trusty/libtrusty-rs/src/ |
D | lib.rs | 188 } else if err.kind() == ErrorKind::Interrupted { in recv()
|
/system/security/keystore2/test_utils/ |
D | lib.rs | 52 Err(e) => match e.kind() { in new()
|
/system/security/keystore/tests/fuzzer/ |
D | README.md | 25 This ensures that the plugin tolerates any kind of input (empty, huge, 72 This ensures that the plugin tolerates any kind of input (empty, huge,
|
/system/update_engine/sample_images/ |
D | generate_images.sh | 223 local kind="$3" 246 case "${kind}" in
|
/system/core/fastboot/fuzzer/ |
D | README.md | 28 This ensures that the plugin tolerates any kind of input (empty, huge,
|