Home
last modified time | relevance | path

Searched refs:join (Results 1 – 18 of 18) sorted by relevance

/system/bt/embdrv/sbc/decoder/srce/
Ddecoder-private.c144 common->frameInfo.join = *b++; in OI_SBC_ReadScalefactors()
146 common->frameInfo.join = 0; in OI_SBC_ReadScalefactors()
160 common->frameInfo.join = HIGH(f = *b++); in OI_SBC_ReadScalefactors()
Dreadsamplesjoint.inc65 OI_UINT8 jmask = common->frameInfo.join << (8 - NROF_SUBBANDS);
/system/extras/tests/workloads/
Datrace-uncompress.py18 data = ''.join(parts[1])
/system/core/libsync/tests/
Dsync_test.cpp375 waitThread.join(); in TEST()
406 waitThread.join(); in TEST()
468 a.join(); in TEST()
469 b.join(); in TEST()
542 for_each(begin(threads), end(threads), [](thread& thread) { thread.join(); }); in TEST_P()
/system/core/include/utils/
DThread.h68 status_t join();
/system/media/camera/docs/
Dmetadata_helpers.py128 return ".".join((i.name for i in path))
205 newstr = "".join([i.isupper() and ("_" + i) or i for i in newstr]).upper()
627 return "".join([s[0:1].upper() + s[1:] for s in what.split('.')])
785 javatext = "\n".join(line_filter(i) for i in javatext.split("\n")) + "\n"
810 text_not_first = "\n".join(text_lines[1:])
Dmetadata_validate.py73 fqn = ".".join(parents)
Dmetadata_parser_xml.py118 return "".join([i.strip() for i in MetadataParserXml._find_direct_strings(element)])
Dhtml.mako270 ${" x ".join(prop.container_sizes)}
Dmetadata_model.py1358 return ".".join(self.get_name_as_list()[0:-1])
/system/extras/verity/
Dbuild_verity_metadata.py35 cmd = " ".join((signer_path, table_file.name, key_path, signature_file.name))
/system/extras/tests/net_test/
Dcstruct.py121 return "%s(%s)" % (self._name, ", ".join(
Diproute.py315 data = ":".join(x.encode("hex") for x in nla_data)
651 raise ValueError("Invalid lladdr %s" % ":".join(lladdr))
652 lladdr = "".join(chr(int(hexbyte, 16)) for hexbyte in lladdr)
Dnet_test.py185 formatted = ":".join(groups)
Dmultinetwork_test.py468 dstopts = "".join([
640 pad8 = "".join(["\x11\x00", "\x01\x04", "\x00" * 4])
/system/core/adb/tests/
Dtest_adb.py376 host_path = os.path.join(
384 host_path = os.path.join(host_dir, dev_file.base_name)
416 device_full_path = os.path.join(
/system/bt/embdrv/sbc/decoder/include/
Doi_codec_sbc.h144 OI_UINT8 join; /**< Whether joint stereo has been used. */ member
/system/core/libutils/
DThreads.cpp817 status_t Thread::join() in join() function in android::Thread