Searched refs:stream (Results 1 - 5 of 5) sorted by relevance

/lxc/src/include/
H A Dlxcmntent.h35 extern struct mntent *getmntent (FILE *stream);
36 extern struct mntent *getmntent_r (FILE *stream, struct mntent *mp, char *buffer, int bufsiz);
44 int endmntent (FILE *stream);
H A Dlxcmntent.c76 struct mntent *getmntent_r (FILE *stream, struct mntent *mp, char *buffer, int bufsiz) argument
85 if (fgets (buffer, bufsiz, stream) == NULL)
97 while (fgets (tmp, sizeof tmp, stream) != NULL)
134 struct mntent *getmntent (FILE *stream) argument
144 return getmntent_r (stream, &m, getmntent_buffer, BUFFER_SIZE);
165 /* Close a stream opened with `setmntent'. */
166 int endmntent (FILE *stream) argument
168 if (stream) /* SunOS 4.x allows for NULL stream */
169 fclose (stream);
[all...]
/lxc/src/tests/
H A Dlxctest.h31 #define lxc_debug_stream(stream, format, ...) \
33 fprintf(stream, "%s: %d: %s: " format, __FILE__, __LINE__, \
/lxc/templates/
H A Dlxc-ubuntu-cloud.in140 [ -s | --stream]: Use specified stream rather than 'tryreleased'
149 options=$(getopt -o a:hp:r:n:Fi:CLS:T:ds:u: -l arch:,help,rootfs:,path:,release:,name:,flush-cache,hostid:,auth-key:,cloud,no_locales,tarball:,debug,stream:,userdata:,vendordata:,mapped-uid:,mapped-gid: -- "$@")
198 stream="tryreleased"
211 -s|--stream) stream=$2; shift 2;;
248 if [ "$stream" != "daily" -a "$stream" != "released" -a "$stream" != "tryreleased" ]; then
287 if [ "$stream"
[all...]
/lxc/src/lxc/
H A Dlxc_user_nic.c52 #define usernic_debug_stream(stream, format, ...) \
54 fprintf(stream, "%s: %d: %s: " format, __FILE__, __LINE__, \

Completed in 30 milliseconds