Lines Matching defs:string

49 func string1(x string) string { // ERROR "leaking param: x to result ~r0 level=0"
138 func len3(x string) int { // ERROR "x does not escape"
185 func slice2(x string) string { // ERROR "leaking param: x$"
200 func elem2(x *string) string { // ERROR "leaking param: x to result ~r0 level=1"
234 func index2(x []string) string { // ERROR "leaking param: x to result ~r0 level=0"
244 func index4(x [3]string) string { // ERROR "leaking param: x to result ~r0 level=0"
249 func index5(x string) byte { // ERROR "x does not escape"
278 func mapindex(m map[string]string, k string) string { // ERROR "m does not escape" "leaking param: …
284 func mapkeys(m map[string]string) []reflect.Value { // ERROR "m does not escape"
289 func mapiter1(m map[string]string) *reflect.MapIter { // ERROR "leaking param: m$"
294 func mapiter2(m map[string]string) string { // ERROR "leaking param: m$"
303 func mapiter3(m map[string]string, it *reflect.MapIter) { // ERROR "leaking param: m$" "it does not…
308 func recv1(ch chan string) string { // ERROR "ch does not escape"
314 func recv2(ch chan string) string { // ERROR "ch does not escape"
321 func send1(ch chan string, x string) { // ERROR "ch does not escape" "leaking param: x$"
328 func send2(ch chan string, x string) bool { // ERROR "ch does not escape" "leaking param: x$"
334 func close1(ch chan string) { // ERROR "ch does not escape"
339 func select1(ch chan string) string { // ERROR "leaking param: ch$"
347 func select2(ch chan string, x string) { // ERROR "leaking param: ch$" "leaking param: x$"
399 func set5(v reflect.Value, x string) { // ERROR "v does not escape" "leaking param: x$"
411 func setmapindex(m map[string]string, k, e string) { // ERROR "m does not escape" "leaking param: k…
419 func mapdelete(m map[string]string, k string) { // ERROR "m does not escape" "leaking param: k$"
431 func setiterkey2(v reflect.Value, m map[string]string) { // ERROR "leaking param: v$" "leaking para…
442 func setitervalue2(v reflect.Value, m map[string]string) { // ERROR "leaking param: v$" "leaking pa…