Searched refs:core_foundation_handle (Results 1 – 3 of 3) sorted by relevance
/third_party/libuv/src/unix/ |
D | darwin-proctitle.c | 69 void* core_foundation_handle; in uv__set_process_title() 85 core_foundation_handle = dlopen("/System/Library/Frameworks/" in uv__set_process_title() 90 if (application_services_handle == NULL || core_foundation_handle == NULL) in uv__set_process_title() 94 dlsym(core_foundation_handle, "CFStringCreateWithCString"); in uv__set_process_title() 96 dlsym(core_foundation_handle, "CFBundleGetBundleWithIdentifier"); in uv__set_process_title() 98 dlsym(core_foundation_handle, "CFBundleGetDataPointerForName"); in uv__set_process_title() 100 dlsym(core_foundation_handle, "CFBundleGetFunctionPointerForName"); in uv__set_process_title() 137 *(void **)(&pCFBundleGetInfoDictionary) = dlsym(core_foundation_handle, in uv__set_process_title() 139 *(void **)(&pCFBundleGetMainBundle) = dlsym(core_foundation_handle, in uv__set_process_title() 184 if (core_foundation_handle != NULL) in uv__set_process_title() [all …]
|
D | fsevents.c | 518 static void* core_foundation_handle; in uv__fsevents_global_init() local 524 if (core_foundation_handle != NULL) in uv__fsevents_global_init() 533 core_foundation_handle = dlopen("/System/Library/Frameworks/" in uv__fsevents_global_init() 537 if (core_foundation_handle == NULL) in uv__fsevents_global_init() 555 V(core_foundation_handle, CFArrayCreate); in uv__fsevents_global_init() 556 V(core_foundation_handle, CFRelease); in uv__fsevents_global_init() 557 V(core_foundation_handle, CFRunLoopAddSource); in uv__fsevents_global_init() 558 V(core_foundation_handle, CFRunLoopGetCurrent); in uv__fsevents_global_init() 559 V(core_foundation_handle, CFRunLoopRemoveSource); in uv__fsevents_global_init() 560 V(core_foundation_handle, CFRunLoopRun); in uv__fsevents_global_init() [all …]
|
D | darwin.c | 210 void* core_foundation_handle; in uv__get_cpu_speed() local 222 core_foundation_handle = dlopen("/System/Library/Frameworks/" in uv__get_cpu_speed() 230 if (core_foundation_handle == NULL || iokit_handle == NULL) in uv__get_cpu_speed() 246 V(core_foundation_handle, CFStringCreateWithCString); in uv__get_cpu_speed() 247 V(core_foundation_handle, CFStringGetSystemEncoding); in uv__get_cpu_speed() 248 V(core_foundation_handle, CFDataGetBytePtr); in uv__get_cpu_speed() 249 V(core_foundation_handle, CFDataGetLength); in uv__get_cpu_speed() 250 V(core_foundation_handle, CFDataGetBytes); in uv__get_cpu_speed() 251 V(core_foundation_handle, CFRelease); in uv__get_cpu_speed() 316 if (core_foundation_handle != NULL) in uv__get_cpu_speed() [all …]
|