Searched defs:start (Results 1 - 7 of 7) sorted by relevance

/lxc/src/lxc/
H A Dstart.h39 int (*start)(struct lxc_handler *, void *); member in struct:lxc_operations
60 bool backgrounded; // indicates whether should we close std{in,out,err} on start
H A Dlxc_user_nic.c547 char *start; member in struct:entry_line
591 entry_lines[n].start = p;
592 entry_lines[n].len = get_eol(p, e) - entry_lines[n].start;
611 memcpy(p, entry_lines[i].start, entry_lines[i].len);
H A Dlxccontainer.h198 bool (*start)(struct lxc_container *c, int useinit, char * const argv[]); member in struct:lxc_container
209 * \note Identical to \ref start except that that the init
H A Dstart.c72 #include "start.h"
186 * - If lxc-start was passed "-C", then conf->close_all_fds will be true, in
449 if (run_lxc_hooks(name, "pre-start", conf, handler->lxcpath, NULL)) {
450 ERROR("Failed to run lxc.hook.pre-start for container \"%s\".", name);
858 if (run_lxc_hooks(handler->name, "start", handler->conf, handler->lxcpath, NULL)) {
859 ERROR("Failed to run lxc.hook.start for container \"%s\".", handler->name);
892 * start hook above. Not all of the variables like CONFIG_PATH or ROOTFS
941 handler->ops->start(handler, handler->data);
1432 static int start(struct lxc_handler *handler, void* data) function
1452 .start
[all...]
/lxc/src/lxc/bdev/
H A Dlxclvm.c185 int ret, len, status, start=0; local
213 while(start < len && output[start] == ' ') start++;
215 if (start + pos < len && output[start + pos] == expected)
/lxc/src/lua-lxc/
H A Dlxc.lua57 local start = 1
60 nextc = string.find(self, delim, start)
62 table.insert(cols, string.sub(self, start, nextc-1))
63 start = nextc + #delim
65 table.insert(cols, string.sub(self, start, string.len(self)))
68 until nextc == nil or start > #self
114 function container:start()
115 return self.core:start()
/lxc/src/lxc/cgroups/
H A Dcgfsng.c343 unsigned start = strtoul(token, NULL, 0); local
344 unsigned end = start;
349 if (!(start <= end)) {
359 while (start <= end)
360 set_bit(start++, bitarr);

Completed in 35 milliseconds