tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

index.rst (1482B)


      1 .. _mozilla_projects_nss_reference_fc_findobjects:
      2 
      3 FC_FindObjects
      4 ==============
      5 
      6 `Name <#name>`__
      7 ~~~~~~~~~~~~~~~~
      8 
      9 .. container::
     10 
     11   FC_FindObjects - Search for one or more objects
     12 
     13 `Syntax <#syntax>`__
     14 ~~~~~~~~~~~~~~~~~~~~
     15 
     16 .. container::
     17 
     18   .. code::
     19 
     20      CK_RV FC_FindObjects(
     21        CK_SESSION_HANDLE hSession,
     22        CK_OBJECT_HANDLE_PTR phObject,
     23        CK_ULONG usMaxObjectCount,
     24        CK_ULONG_PTR pusObjectCount
     25      );
     26 
     27 `Parameters <#parameters>`__
     28 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     29 
     30 .. container::
     31 
     32   ``hSession``
     33      [in] session handle.
     34   ``pTemplate``
     35      [out] pointer to location to receive the object handles.
     36   ``usMaxObjectCount``
     37      [in] maximum number of handles to retrieve.
     38   ``pusObjectCount``
     39      [out] pointer to location to receive the number of returned handles.
     40 
     41 `Description <#description>`__
     42 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     43 
     44 .. container::
     45 
     46   ``FC_FindObjects`` returns the next set of object handles matching the criteria set up by the
     47   previous call to ``FC_FindObjectsInit`` and sets the object count variable to their number or to
     48   zero if there are none.
     49 
     50 .. _return_value:
     51 
     52 `Return value <#return_value>`__
     53 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     54 
     55 .. container::
     56 
     57 `Examples <#examples>`__
     58 ~~~~~~~~~~~~~~~~~~~~~~~~
     59 
     60 .. container::
     61 
     62 .. _see_also:
     63 
     64 `See also <#see_also>`__
     65 ~~~~~~~~~~~~~~~~~~~~~~~~
     66 
     67 .. container::
     68 
     69   -  :ref:`mozilla_projects_nss_reference_fc_findobjectsinit`,
     70      `NSC_FindObjects </en-US/NSC_FindObjects>`__