Searched defs:comm (Results 1 - 24 of 24) sorted by relevance

/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_owner.h16 char comm[16]; member in struct:ipt_owner_info
/external/linux-tools-perf/util/
H A Dthread.h23 char *comm; member in struct:thread
31 int thread__set_comm(struct thread *self, const char *comm);
H A Dthread.c17 self->comm = malloc(32);
18 if (self->comm)
19 snprintf(self->comm, 32, ":%d", self->pid);
28 free(self->comm);
32 int thread__set_comm(struct thread *self, const char *comm) argument
36 if (self->comm)
37 free(self->comm);
38 self->comm = strdup(comm);
39 err = self->comm
[all...]
H A Dsession.h81 comm, member in struct:perf_event_ops
H A Devent.h31 char comm[16]; member in struct:comm_event
137 struct comm_event comm; member in union:perf_event
H A Dpython.c130 static char pyrf_comm_event__doc[] = PyDoc_STR("perf comm event object.");
137 member_def(comm_event, comm, T_STRING_INPLACE, "process name"),
143 return PyString_FromFormat("{ type: comm, pid: %u, tid: %u, comm: %s }",
144 pevent->event.comm.pid,
145 pevent->event.comm.tid,
146 pevent->event.comm.comm);
409 "comm",
432 comm local
[all...]
H A Dtrace-event-parse.c67 char *comm; member in struct:cmdline
91 char *comm; member in struct:cmdline_list
102 (float *)(void *)&item->comm); /* workaround gcc warning */
114 cmdlines[i].comm = list->comm;
/external/webkit/Source/WebKit/android/wds/
H A DCommand.h76 Command(const Command& comm) argument
77 : m_name(comm.m_name)
78 , m_description(comm.m_description)
79 , m_dispatch(comm.m_dispatch)
80 , m_handler(comm.m_handler) {}
H A DCommand.cpp90 InternalCommand(const Command* comm, const Frame* frame, argument
92 : Command(*comm)
/external/iptables/extensions/
H A Dlibxt_owner.c34 char comm[16]; member in struct:ipt_owner_info
43 char comm[16]; member in struct:ip6t_owner_info
106 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, comm)},
332 printf(" %.*s", (int)sizeof(info->comm), info->comm);
/external/linux-tools-perf/util/scripting-engines/
H A Dtrace-event-perl.c264 char *comm = thread->comm; local
293 XPUSHs(sv_2mortal(newSVpv(comm, 0)));
326 XPUSHs(sv_2mortal(newSVpv(comm, 0)));
554 "\tmy ($event_name, $cpu, $secs, $nsecs, $pid, $comm) = @_;\n\n"
556 "$event_name, $cpu, $secs, $nsecs, $pid, $comm);\n}");
H A Dtrace-event-python.c225 char *comm = thread->comm; local
264 PyTuple_SetItem(t, n++, PyString_FromString(comm));
270 PyDict_SetItemString(dict, "common_comm", PyString_FromString(comm));
582 "event_name, cpu, secs, nsecs, pid, comm):\n"
584 "(event_name, cpu, secs, nsecs, pid, comm),\n");
/external/linux-tools-perf/
H A Dbuiltin-timechart.c72 * Each "pid" entry, has a list of "comm"s.
75 * Each comm has a list of samples that will be used to draw
108 char *comm; member in struct:per_pidcomm
186 static void pid_set_comm(int pid, char *comm) argument
193 if (c->comm && strcmp(c->comm, comm) == 0) {
197 if (!c->comm) {
198 c->comm = strdup(comm);
335 char comm[TASK_COMM_LEN]; member in struct:wakeup_entry
817 char comm[256]; local
[all...]
H A Dbuiltin-sched.c57 char comm[COMM_LEN]; member in struct:task_desc
323 static struct task_desc *register_pid(unsigned long pid, const char *comm) argument
337 strcpy(task->comm, comm);
351 printf("registered task #%ld, PID %ld (%s)\n", nr_tasks, pid, comm);
365 task->nr, task->comm, task->pid, task->nr_events);
471 sprintf(comm2, ":%s", this_task->comm);
710 char comm[16]; member in struct:trace_runtime_event
725 char comm[16]; member in struct:trace_wakeup_event
757 char comm[1 member in struct:trace_migrate_task_event
[all...]
/external/libnfc-nci/src/nfa/int/
H A Dnfa_hci_int.h289 tNFA_HCI_COMM_DATA comm; member in union:__anon7734
/external/mksh/src/
H A Dmain.c676 command(const char *comm, int line) argument
681 s->start = s->str = comm;
/external/tcpdump/
H A Dprint-bgp.c961 u_int32_t comm; local
963 comm = EXTRACT_32BITS(tptr);
964 switch (comm) {
976 (comm >> 16) & 0xffff,
977 comm & 0xffff,
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c397 static __inline__ int comm_rank ( MPI_Comm comm )
400 err = PMPI_Comm_rank(comm, &r);
404 static __inline__ int comm_size ( MPI_Comm comm )
407 err = PMPI_Comm_size(comm, &r);
1058 int dest, int tag, MPI_Comm comm)
1066 CALL_FN_W_6W(err, fn, buf,count,datatype,dest,tag,comm);
1072 int dest, int tag, MPI_Comm comm) {
1073 return generic_Send(buf,count,datatype, dest,tag,comm);
1076 int dest, int tag, MPI_Comm comm) {
1077 return generic_Send(buf,count,datatype, dest,tag,comm);
1057 generic_Send(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1071 PMPI_Send(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1075 PMPI_Bsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1079 PMPI_Ssend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1083 PMPI_Rsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) argument
1094 PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status) argument
1370 generic_Isend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1387 PMPI_Isend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1392 PMPI_Ibsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1397 PMPI_Issend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1402 PMPI_Irsend(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request* request) argument
1415 PMPI_Irecv( void* buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Request* request ) argument
1623 PMPI_Iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status) argument
1651 PMPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status* status) argument
1705 PMPI_Sendrecv( void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag, MPI_Comm comm, MPI_Status *status) argument
1906 PMPI_Bcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm) argument
1948 PMPI_Gather( void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) argument
1984 PMPI_Scatter( void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) argument
2019 PMPI_Alltoall( void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) argument
2052 PMPI_Reduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm) argument
2080 PMPI_Allreduce(void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) argument
2133 PMPI_Comm_create(MPI_Comm comm, MPI_Group group, MPI_Comm* newcomm) argument
2149 PMPI_Comm_dup(MPI_Comm comm, MPI_Comm* newcomm) argument
2164 PMPI_Comm_free(MPI_Comm* comm) argument
2179 PMPI_Comm_rank(MPI_Comm comm, int *rank) argument
2196 PMPI_Comm_size(MPI_Comm comm, int *size) argument
[all...]
/external/blktrace/
H A Dblkparse.c77 char comm[16]; member in struct:process_pid_map
565 strcpy(ppm->comm, name);
628 return ppm->comm;
650 return ppi_hash_name(ppm->comm);
677 if (!strcmp(ppm->comm, name))
1707 res = strverscmp(ppi1->ppm->comm, ppi2->ppm->comm);
1755 sprintf(name, "%s (%u, ...)", ppm->comm, ppm->pid);
1757 sprintf(name, "%s (%u)", ppm->comm, ppm->pid);
/external/kernel-headers/original/linux/
H A Dperf_event.h200 comm : 1, /* include comm data */ member in struct:perf_event_attr
358 * char comm[];
H A Dsched.h869 char comm[TASK_COMM_LEN]; /* executable name excluding path member in struct:task_struct
1350 * Protects ->fs, ->files, ->mm, ->group_info, ->comm, keyring
/external/linux-tools-perf/util/include/linux/added/
H A Dperf_event.h210 comm : 1, /* include comm data */ member in struct:perf_event_attr
385 * char comm[];
/external/valgrind/main/include/vki/
H A Dvki-linux.h2664 comm : 1, /* include comm data */ member in struct:vki_perf_event_attr
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 651 milliseconds