Home
last modified time | relevance | path

Searched refs:extra (Results 1 – 10 of 10) sorted by relevance

/system/core/toolbox/
Dmount.c65 static void add_extra_option(struct extra_opts *extra, char *s) in add_extra_option() argument
70 if (extra->str) in add_extra_option()
72 newlen = extra->used_size + len; in add_extra_option()
74 if (newlen >= extra->alloc_size) { in add_extra_option()
77 new = realloc(extra->str, newlen + 1); /* +1 for NUL */ in add_extra_option()
81 extra->str = new; in add_extra_option()
82 extra->end = extra->str + extra->used_size; in add_extra_option()
83 extra->alloc_size = newlen + 1; in add_extra_option()
86 if (extra->used_size) { in add_extra_option()
87 *extra->end = ','; in add_extra_option()
[all …]
/system/media/audio_utils/
Dtinysndfile.c358 size_t extra = 0; in sf_open_write() local
363 extra = 14; in sf_open_write()
367 (void) fwrite(wav, 44 + extra, 1, stream); in sf_open_write()
408 size_t extra = (handle->info.format & SF_FORMAT_SUBMASK) == SF_FORMAT_FLOAT ? 14 : 0; in sf_close() local
409 (void) fread(wav, 44 + extra, 1, handle->stream); in sf_close()
411 write4u(&wav[4], dataSize + 36 + extra); // riffSize in sf_close()
412 write4u(&wav[40 + extra], dataSize); // dataSize in sf_close()
414 (void) fwrite(wav, 44 + extra, 1, handle->stream); in sf_close()
/system/bt/btif/include/
Dbtif_hl.h119 btif_hl_extra_mdl_cfg_t extra; member
/system/bt/btif/src/
Dbtif_hl.c706 p_mdl->extra.data_type ==data_type && in btif_hl_is_reconnect_possible()
707 …(p_mdl->extra.peer_mdep_id != BTA_HL_INVALID_MDEP_ID && p_mdl->extra.peer_mdep_id == peer_mdep_id)… in btif_hl_is_reconnect_possible()
730 p_mdl1->extra.data_type == data_type && in btif_hl_is_reconnect_possible()
731 …(p_mdl1->extra.peer_mdep_id != BTA_HL_INVALID_MDEP_ID && p_mdl1->extra.peer_mdep_id == peer_mdep_i… in btif_hl_is_reconnect_possible()
4091 p_acb->delete_mdl.mdep_cfg_idx = p_mdl->extra.mdep_cfg_idx; in destroy_channel()
4110 mdep_cfg_idx = p_mdl->extra.mdep_cfg_idx; in destroy_channel()
4349 p_mdl->extra.mdep_cfg_idx = p_mcb->pcb.mdep_cfg_idx; in btif_hl_save_mdl_cfg()
4350 …p_mdl->extra.data_type = p_acb->sup_feature.mdep[p_mcb->pcb.mdep_cfg_idx].mdep_cfg.data_cfg[0].dat… in btif_hl_save_mdl_cfg()
4355 &p_mdl->extra.peer_mdep_id)) in btif_hl_save_mdl_cfg()
4357 p_mdl->extra.peer_mdep_id = BTA_HL_INVALID_MDEP_ID; in btif_hl_save_mdl_cfg()
/system/media/camera/docs/
DCameraMetadataKeys.mako39 # Unconditionally add extra information if necessary
/system/extras/tests/net_test/
Dmultinetwork_base.py607 def _FormatMessage(self, iif, ip_if, extra, desc, reply_desc): argument
608 msg = "Receiving %s on %s to %s IP, %s" % (desc, iif, ip_if, extra)
Dmultinetwork_test.py748 extra = "mode=%s, syncookies=%d" % (mode, syncookies)
749 msg = self._FormatMessage(iif, ip_if, extra, desc, reply_desc)
/system/core/adb/
Dcommandline.cpp57 static std::string product_file(const char *extra) { in product_file() argument
65 gProductOutPath.c_str(), OS_PATH_SEPARATOR_STR, extra); in product_file()
/system/security/keystore/
Dkeystore.cpp1421 size_t extra = decode_key_length(p, plen); in list() local
1422 char *match = (char*) malloc(extra + 1); in list()
1425 matches->push(android::String16(match, extra)); in list()
1428 ALOGW("could not allocate match of size %zd", extra); in list()
/system/bt/doc/
Dstyle_guide.md93 Variable declarations should not include extra whitespace to line up fields. For