Searched defs:start (Results 1 - 7 of 7) sorted by relevance
/lxc/src/lxc/ |
H A D | start.h | 39 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 D | lxc_user_nic.c | 547 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 D | lxccontainer.h | 198 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 D | start.c | 72 #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 D | lxclvm.c | 185 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 D | lxc.lua | 57 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 D | cgfsng.c | 343 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