Hi,
`glObjectLabel` is a GLES3.2 entry point. `glObjectLabelKHR` is the entry point exposed by KHR_debug. So the entry point you'd want to load/call is "glObjectLabelKHR" (including the suffix).
FYI, in most cases, the functionality of `glFooSUFFIX` and the promoted `glFoo` are identical, but technically they are considered to be different entry points with (potentially) different behavior. This is why the GL driver cannot return the entry point for `glFooSUFFIX` when you query `glFoo` and "just make it work". Validation for each entry point is naturally different in their version/extension check.
Cheers,