stream            107 daemons/execd/remoted_schemas.c         FILE *stream = NULL;
stream            113 daemons/execd/remoted_schemas.c         stream = fopen(path, "w+");
stream            114 daemons/execd/remoted_schemas.c         if (stream == NULL) {
stream            117 daemons/execd/remoted_schemas.c             rc = fprintf(stream, "%s", child->content);
stream            123 daemons/execd/remoted_schemas.c             fclose(stream);
stream            169 lib/common/procfs.c     FILE *stream = NULL;
stream            172 lib/common/procfs.c     stream = fopen("/proc/stat", "r");
stream            173 lib/common/procfs.c     if (stream == NULL) {
stream            178 lib/common/procfs.c         while (fgets(buffer, sizeof(buffer), stream)) {
stream            183 lib/common/procfs.c         fclose(stream);
stream            350 lib/common/procfs.c     FILE *stream = NULL;
stream            374 lib/common/procfs.c     stream = fopen(loadfile, "r");
stream            375 lib/common/procfs.c     if (stream == NULL) {
stream            384 lib/common/procfs.c     if (fgets(buffer, sizeof(buffer), stream) != NULL) {
stream            397 lib/common/procfs.c             fclose(stream);
stream            421 lib/common/procfs.c         fclose(stream);
stream            425 lib/common/procfs.c     fclose(stream);
stream            435 lib/common/procfs.c     FILE *stream = NULL;
stream            442 lib/common/procfs.c     stream = fopen(loadfile, "r");
stream            443 lib/common/procfs.c     if (stream == NULL) {
stream            449 lib/common/procfs.c     if (fgets(buffer, sizeof(buffer), stream) != NULL) {
stream            458 lib/common/procfs.c         fclose(stream);
stream            462 lib/common/procfs.c     fclose(stream);
stream            416 lib/common/xml_io.c write_compressed_stream(char *text, const char *filename, FILE *stream,
stream            423 lib/common/xml_io.c     BZFILE *bz_file = BZ2_bzWriteOpen(&rc, stream, 5, 0, 0);
stream            475 lib/common/xml_io.c write_xml_stream(const xmlNode *xml, const char *filename, FILE *stream,
stream            491 lib/common/xml_io.c         && (write_compressed_stream(buffer->str, filename, stream,
stream            496 lib/common/xml_io.c     rc = fprintf(stream, "%s", buffer->str);
stream            506 lib/common/xml_io.c     if (fflush(stream) != 0) {
stream            512 lib/common/xml_io.c     if ((fsync(fileno(stream)) < 0) && (errno != EROFS) && (errno != EINVAL)) {
stream            517 lib/common/xml_io.c     fclose(stream);
stream            537 lib/common/xml_io.c     FILE *stream = NULL;
stream            540 lib/common/xml_io.c     stream = fdopen(fd, "w");
stream            541 lib/common/xml_io.c     if (stream == NULL) {
stream            545 lib/common/xml_io.c     return write_xml_stream(xml, pcmk__s(filename, "unnamed file"), stream,
stream            562 lib/common/xml_io.c     FILE *stream = NULL;
stream            565 lib/common/xml_io.c     stream = fopen(filename, "w");
stream            566 lib/common/xml_io.c     if (stream == NULL) {
stream            570 lib/common/xml_io.c     return write_xml_stream(xml, filename, stream, compress);
stream           1182 lib/lrmd/lrmd_client.c     FILE *stream = NULL;
stream           1189 lib/lrmd/lrmd_client.c     stream = fopen(location, "r");
stream           1190 lib/lrmd/lrmd_client.c     if (stream == NULL) {
stream           1196 lib/lrmd/lrmd_client.c     while (!feof(stream)) {
stream           1197 lib/lrmd/lrmd_client.c         int next = fgetc(stream);
stream           1200 lib/lrmd/lrmd_client.c             if (!feof(stream)) {
stream           1213 lib/lrmd/lrmd_client.c     fclose(stream);