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/ |
D | ByteArrayUtils.java | 89 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/ |
D | process_data_plugin.h | 68 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/ |
D | memory_data_plugin.h | 313 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/ |
D | memory_data_plugin.cpp | 592 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/ |
D | process_data_plugin.cpp | 157 bool ProcessDataPlugin::BufnCmp(const char* src, int srcLen, const char* key, int keyLen) in BufnCmp() argument 159 if (!src || !key || (srcLen < keyLen)) { in BufnCmp()
|