~ubuntu-branches/ubuntu/utopic/sblim-sfcc/utopic-proposed

« back to all changes in this revision

Viewing changes to .pc/fix-manpage-mismatch.patch/man/man3/CMCIClientFT.enumClassNames.3

  • Committer: Package Import Robot
  • Author(s): Kent Baxley
  • Date: 2014-06-25 13:34:21 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140625133421-6a2arkqw06znji3u
Tags: 2.2.7-0ubuntu1
* New upstream release (LP: #1335941). 
* New Features:
 - [bugs:#2692] SFCC: SfcbLocal interface should expose markHeap() and releaseHeap()

 Bugs:
 - [bugs:#2728] Missing tag definition for REFARRAY
 - [bugs:#2729] Improper type handling for EmbeddedObject in PARAMVALUE
 - [bugs:#2730] More memory leaks in backend/cimxml/grammer.c
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH  3  2005-06-09 "sfcc" "SFCBroker Client Library"
 
2
.SH NAME
 
3
CMCICLientFT.enumClassNames() \- Enumerate class names
 
4
.SH SYNOPSIS
 
5
.nf
 
6
.B #include <cmci.h>
 
7
.sp
 
8
.BI CMPIEnumeration *
 
9
.BI CMCIClientFT.enumClassNames (CMCIClient* cl,
 
10
.br
 
11
.BI                             CMPIObjectPath* op,
 
12
.br
 
13
.BI                             CMPIFlags flags,
 
14
.br
 
15
.BI                             CMPIStatus* rc);
 
16
.br
 
17
.sp
 
18
.fi
 
19
.SH DESCRIPTION
 
20
Get Class using \fIop\fP as reference. The content of the returned
 
21
class structure can be controled using the \fIflags\fP parameter.
 
22
.PP
 
23
Arguments are the client object pointer \fIcl\fP, ObjectPath object 
 
24
pointer \fIop\fP that contains namespace and classname components,
 
25
\fIflags\fP to affect the returned class structure content, 
 
26
and \fIrc\fP the CMPI return status (suppressed when NULL).
 
27
.PP
 
28
The \fIflags\fP argument is a bit mask that can contain the flag 
 
29
\fICMPI_FLAG_DeepInheritance\fP.
 
30
.PP
 
31
.SH "RETURN VALUE"
 
32
When successful the \fBCMCIClientFT.enumClassNames()\fP function returns
 
33
a pointer to a CMPIEnumeration object that contains each class name found
 
34
and sets a successful status code in \fIrc\fR.
 
35
When unsuccessful it returns NULL and sets the \fIrc\fP argument with the
 
36
error code and and corresponding error string.
 
37
.SH "ERRORS"
 
38
.sp
 
39
.SH "EXAMPLES"
 
40
.nf
 
41
   CMCIClient *cc;
 
42
   CMPIObjectPath * objectpath;
 
43
   CMPIEnumeration * enumeration;
 
44
   CMPIStatus status;
 
45
 
 
46
   /* Setup a conncetion to the CIMOM */   
 
47
   cc = cmciConnect("localhost", NULL, NULL, NULL, NULL, NULL);
 
48
 
 
49
   objectpath = newCMPIObjectPath("root/cimv2", NULL, NULL);
 
50
   enumeration = cc->ft->enumClassNames(cc, objectpath, 0, &status);
 
51
 
 
52
   if (!status.rc) {
 
53
        fprintf(stderr, "op error code %d description %s\n",
 
54
                         status.rc, status.msg->hdl);
 
55
        abort();
 
56
   }
 
57
.fi
 
58
.SH "CONFORMING TO"
 
59
.sp
 
60
.SH "SEE ALSO"
 
61
Common Manageability Programming Interface (CMPI) - OpenGroup,
 
62
.br
 
63
CMCIClient(3), CMPIEnumeration(3), CMPIObjectPath(3), CMPIFlags(3),
 
64
CMPIStatus(3)