Home
last modified time | relevance | path

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

/dports/audio/carla/Carla-2.4.1/source/backend/plugin/
H A DCarlaPlugin.cpp1209 char strBufSymbol[STR_MAX+1]; in exportAsLV2() local
1211 carla_zeroChars(strBufSymbol, STR_MAX+1); in exportAsLV2()
1237 if (! getParameterSymbol(i, strBufSymbol)) in exportAsLV2()
1238 strBufSymbol[0] = '\0'; in exportAsLV2()
1240 if (strBufSymbol[0] == '\0') in exportAsLV2()
1246 if (strBufSymbol[0] >= '0' && strBufSymbol[0] <= '9') in exportAsLV2()
1248 const size_t len(std::strlen(strBufSymbol)); in exportAsLV2()
1249 std::memmove(strBufSymbol+1, strBufSymbol, len); in exportAsLV2()
1250 strBufSymbol[0] = '_'; in exportAsLV2()
1251 strBufSymbol[len+1] = '\0'; in exportAsLV2()
[all …]