Lines Matching refs:created
31 …may be created, consuming substantial resources. To handle this case, N-API provides the function …
35 …in the reverse order from which they are opened. In addition, all scopes created within a native m…
63 …ref** reference to a **napi_value** object. All **napi_ref** references, created by calling **napi…
115 …es an **napi_ref** reference. You can designate the system to manage the created **napi_ref** refe…
117 …: napi_wrap does not need to receive the created napi_ref reference. The last parameter is nullptr…
120 …sage 2: napi_wrap needs to receive the created napi_ref reference. The last parameter is not nullp…
147 …_create_promise** to create a promise. When a promise is created, a "deferred" object is created a…
149 * Call **napi_resolve_deferred** or **napi_reject_deferred** to resolve or reject the created promi…
168 // 3. Call napi_resolve_deferred or napi_reject_deferred to resolve or reject the created promise a…
185 // 1. Call napi_create_promise to create a promise. When a promise is created,
186 // a "deferred" object is created and returned alongside the promise.
221 … // Add the newly created async work to the queue for the underlying layer to schedule and execute.