Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for jniTypes (0.18 sec)

  1. src/cmd/cgo/gcc.go

    		if _, ok := ptr.Type.(*dwarf.VoidType); ok {
    			return true
    		}
    	}
    	return false
    }
    
    // jniTypes maps from JNI types that we want to be uintptrs, to the underlying type to which
    // they are mapped. The base "jobject" maps to the empty string.
    var jniTypes = map[string]string{
    	"jobject":       "",
    	"jclass":        "jobject",
    	"jthrowable":    "jobject",
    	"jstring":       "jobject",
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top