Searched defs:data (Results 1 - 6 of 6) sorted by relevance
/pkg/src/util/log-scripts/ |
H A D | an2_ip_active.py | 37 def report_by_date(data, title, summary_file = None): 48 sdkeys = sorted(data.keys()) 54 total += data[i] 57 chart_data = "{0:d}".format(data[i]) 59 chart_data += ",{0:d}".format(data[i]) 60 if data[i] > chart_max: 61 chart_max = data[i] 101 data = {} variable 104 data[d] = len(merge_entries_by_date[d]) 115 data variable [all...] |
/pkg/src/modules/ |
H A D | elfextract.h | 49 Elf *elf; /* elf data -- must be freed */ 57 * SHA-256 hash of data extracted via 63 * SHA-256 hash of data extracted via 69 * SHA-512/256 hash of data extracted via 75 * SHA-512/256 hash of data extracted via 85 int data; /* e_ident[EI_DATA] */ member in struct:hdrinfo 98 extern char *pkg_string_from_data(int data);
|
H A D | elfextract.c | 105 pkg_string_from_data(int data) argument 107 switch (data) { 250 hi->data = hdr->e_ident[EI_DATA]; 270 * .rodata.str1.8, .rodata.str1.1, .rodata, .data1, .data, .text 677 * If any of the functions used to extract that data and generate
|
/pkg/src/modules/actions/ |
H A D | _common.c | 88 _generic_init_common(PyObject *action, PyObject *data, PyObject *attrs) argument 114 if (data == NULL || data == Py_None) { 116 if (PyObject_SetAttrString(action, "data", Py_None) == -1) 120 data); 250 PyObject *data = NULL; local 252 /* data is optional, but must not be specified as a keyword argument! */ 253 if (!PyArg_UnpackTuple(args, "_generic_init", 1, 2, &action, &data)) 256 return (_generic_init_common(action, data, attrs)); 264 PyObject *data local [all...] |
/pkg/src/zoneproxy/zoneproxy-client/ |
H A D | zoneproxy-client.c | 294 char data; local 316 if (read(filedes[0], &data, 1) == 1) { 318 exit(data);
|
/pkg/src/zoneproxy/zoneproxyd/ |
H A D | zoneproxyd.c | 29 * group of publishers and repositories to client zones. This ensures that data 53 * Each new connection generates a pair of sockets. The data transfer algorithm 57 * operation is atomic, and correct. When a thread needs data, the event 58 * mechanism is used either to wait for data, or to wait to write data. 60 * buffer ASAP, especially before getting more data. 1608 char data; local 1639 if (read(filedes[0], &data, 1) == 1) { 1641 exit(data); 2103 * Set a limit on the size of the data tha [all...] |
Completed in 23 milliseconds