Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for android_get_device_api_level (0.16 sec)

  1. src/runtime/cgo/gcc_android.c

    	handle = dlopen("libc.so", RTLD_LAZY);
    	if (handle == NULL) {
    		fatalf("inittls: failed to dlopen main program");
    		return;
    	}
    	// android_get_device_api_level is introduced in Android Q, so its mere presence
    	// is enough.
    	get_ver = dlsym(handle, "android_get_device_api_level");
    	dlclose(handle);
    	if (get_ver != NULL) {
    		off = (void *)(TLS_SLOT_APP*sizeof(void *));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top