Home
last modified time | relevance | path

Searched refs:srcLen (Results 1 – 5 of 5) sorted by relevance

/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/
DByteArrayUtils.java89 public static int insertByteToByteArray(byte[] des, int start, byte[] src, int srcLen) { in insertByteToByteArray() argument
90 if (src.length < srcLen) { in insertByteToByteArray()
93 System.arraycopy(src, 0, des, start, srcLen); in insertByteToByteArray()
94 return start + srcLen; in insertByteToByteArray()
/developtools/profiler/device/plugins/process_plugin/include/
Dprocess_data_plugin.h68 bool BufnCmp(const char* src, int srcLen, const char* key, int keyLen);
70 int GetProcStatusId(const char* src, int srcLen);
/developtools/profiler/device/plugins/memory_plugin/include/
Dmemory_data_plugin.h313 bool BufnCmp(const char* src, int srcLen, const char* key, int keyLen);
315 int GetProcStatusId(const char* src, int srcLen);
/developtools/profiler/device/plugins/memory_plugin/src/
Dmemory_data_plugin.cpp592 bool MemoryDataPlugin::BufnCmp(const char* src, int srcLen, const char* key, int keyLen) in BufnCmp() argument
594 if (!src || !key || (srcLen < keyLen)) { in BufnCmp()
616 int MemoryDataPlugin::GetProcStatusId(const char* src, int srcLen) in GetProcStatusId() argument
620 … if (BufnCmp(src, srcLen, procStatusMapping[i].procstr, strlen(procStatusMapping[i].procstr))) { in GetProcStatusId()
/developtools/profiler/device/plugins/process_plugin/src/
Dprocess_data_plugin.cpp157 bool ProcessDataPlugin::BufnCmp(const char* src, int srcLen, const char* key, int keyLen) in BufnCmp() argument
159 if (!src || !key || (srcLen < keyLen)) { in BufnCmp()