HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 351 - 375 of 5937) sorted by null

<<11121314151617181920>>

  /external/iproute2/tc/
m_pedit.h 45 char id[PEDITKINDSIZ]; member in struct:m_pedit_util
  /external/ipsec-tools/src/racoon/
schedule.h 3 /* Id: schedule.h,v 1.5 2006/05/03 21:53:42 vanhu Exp */
52 long id; /* for debug */ member in struct:sched
73 long id; member in struct:scheddump
  /external/iptables/extensions/
libxt_LED.c 26 {.name = "led-trigger-id", .id = O_LED_TRIGGER_ID,
28 .max = sizeof(((struct xt_led_info *)NULL)->id) -
30 {.name = "led-delay", .id = O_LED_DELAY, .type = XTTYPE_STRING},
31 {.name = "led-always-blink", .id = O_LED_ALWAYS_BLINK,
41 "--led-trigger-id name suffix for led trigger name\n"
54 switch (cb->entry->id) {
56 strcpy(led->id, "netfilter-");
57 strcat(led->id, cb->arg);
77 const char *id = led->id + strlen("netfilter-"); /* trim off prefix * local
100 const char *id = led->id + strlen("netfilter-"); \/* trim off prefix *\/ local
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
SessionInfo.java 21 private final String id; field in class:SessionInfo
30 * @param id
38 public SessionInfo(final String id, final long start, final long dump) {
39 if (id == null) {
42 this.id = id;
51 return id;
81 return "SessionInfo[" + id + "]";
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/
NormalizedFileNamesTest.java 34 String id = "Foo-bar_$15.class"; local
35 assertEquals(id, nfn.getFileName(id));
40 String id = "A/b C;"; local
41 assertEquals("A_b_C_", nfn.getFileName(id));
47 String id = new String("Example.html"); local
48 assertSame(id, nfn.getFileName(id));
49 assertSame(id, nfn.getFileName(new String("Example.html")));
  /external/jemalloc/test/unit/
qr.c 12 char id; member in struct:ring_s
22 entries[i].id = 'a' + i;
82 assert_c_eq(t->id, entries[(i+j) % NENTRIES].id,
83 "Element id mismatch");
90 assert_c_eq(t->id, entries[(NENTRIES+i-j-1) %
91 NENTRIES].id, "Element id mismatch");
97 assert_c_eq(t->id, entries[(i+1) % NENTRIES].id,
    [all...]
  /external/kernel-headers/original/uapi/linux/iio/
events.h 17 * @id: event identifier
22 __u64 id; member in struct:iio_event_data
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_vlan.h 13 __u16 id; /* VLAN ID {1-4095} */ member in struct:ebt_vlan_info
16 __u8 bitmask; /* Args bitmask bit 1=1 - ID arg,
18 __u8 invflags; /* Inverse bitmask bit 1=1 - inversed ID arg,
  /external/kernel-headers/original/uapi/linux/
stm.h 25 * @size: size of the structure including real id[] length
29 * @id: identification string
32 * @size field, fill out the @id and desired @width. In return, kernel
43 char id[0]; member in struct:stp_policy_id
  /external/libchrome/base/metrics/
histogram_samples.h 30 uint64_t id; member in struct:base::HistogramSamples::Metadata
49 Metadata() : id(0), sum(0), redundant_count(0) {}
52 explicit HistogramSamples(uint64_t id);
53 HistogramSamples(uint64_t id, Metadata* meta);
72 uint64_t id() const { return meta_->id; } function in class:base::HistogramSamples
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
reverse_copy.pass.cpp 51 int id[] = {0, 1, 2, 3}; local
52 const unsigned sd = sizeof(id)/sizeof(id[0]);
54 r = std::reverse_copy(InIter(id), InIter(id+sd), OutIter(jd));
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 78 int id[] = {0, 1, 2, 3}; local
79 const unsigned sd = sizeof(id)/sizeof(id[0]);
80 r = std::rotate(Iter(id), Iter(id), Iter(id+sd));
81 assert(base(r) == id+sd);
82 assert(id[0] == 0);
83 assert(id[1] == 1);
84 assert(id[2] == 2)
278 std::unique_ptr<int> id[4]; local
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
search_pred.pass.cpp 81 int id[] = {1, 2}; local
82 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(id), Iter2(id+2), count_equal()) == Iter1(ib+1));
  /external/libcxx/test/std/localization/locales/locale/locale.cons/
locale_facetptr.pass.cpp 77 static std::locale::id id; member in struct:my_facet
80 std::locale::id my_facet::id; member in class:my_facet
  /external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/
move.pass.cpp 54 std::thread::id id = t0.get_id(); local
57 assert(t1.get_id() == id);
58 assert(t0.get_id() == std::thread::id());
move2.pass.cpp 61 std::thread::id id = t0.get_id(); local
  /external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
move.pass.cpp 62 std::thread::id id = t0.get_id(); local
64 assert(t1.get_id() == id);
65 assert(t0.get_id() == std::thread::id());
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
swap.pass.cpp 52 int id() const {return data_[0];} function in class:A
68 assert(f1.target<A>()->id() == 1);
69 assert(f2.target<A>()->id() == 2);
73 assert(f1.target<A>()->id() == 2);
74 assert(f2.target<A>()->id() == 1);
83 assert(f1.target<A>()->id() == 1);
89 assert(f2.target<A>()->id() == 1);
99 assert(f2.target<A>()->id() == 1);
103 assert(f1.target<A>()->id() == 1);
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
swap.pass.cpp 49 int id() const {return data_[0];} function in class:A
65 assert(f1.target<A>()->id() == 1);
66 assert(f2.target<A>()->id() == 2);
70 assert(f1.target<A>()->id() == 2);
71 assert(f2.target<A>()->id() == 1);
80 assert(f1.target<A>()->id() == 1);
86 assert(f2.target<A>()->id() == 1);
96 assert(f2.target<A>()->id() == 1);
100 assert(f1.target<A>()->id() == 1);
  /external/libhevc/common/
ihevc_buf_mgr.c 77 WORD32 id; local
82 for(id = 0; id < BUF_MGR_MAX_CNT; id++)
84 ps_buf_mgr->au4_status[id] = 0;
85 ps_buf_mgr->apv_ptr[id] = NULL;
119 /* Check if buffer ID is within allowed range */
125 /* Check if the current ID is being used to hold some other buffer */
151 * Pointer to the id of the free buffer
164 WORD32 id; local
209 UWORD32 id; local
    [all...]
  /external/libmpeg2/common/
impeg2_buf_mgr.c 79 WORD32 id; local
84 for(id = 0; id < BUF_MGR_MAX_CNT; id++)
86 ps_buf_mgr->au4_status[id] = 0;
87 ps_buf_mgr->apv_ptr[id] = NULL;
121 /* Check if buffer ID is within allowed range */
127 /* Check if the current ID is being used to hold some other buffer */
153 * Pointer to the id of the free buffer
166 WORD32 id; local
209 UWORD32 id; local
    [all...]
  /external/libmtp/examples/
thumb.c 48 uint32_t id = 0; local
63 id = strtoul(optarg, &rest, 0);
118 ret = LIBMTP_Send_Representative_Sample(device,id,thumb);
  /external/libnfc-nci/src/nfc/nfc/
nfc_utils.c 68 ** Description This function is called to set the connection id to the
69 ** connection control block and the id mapping table
97 tNFC_CONN_CB * nfc_find_conn_cb_by_handle (UINT8 id)
104 if (nfc_cb.conn_cb[xx].id == id)
118 ** the given connection id
127 UINT8 id; local
143 id = conn_id & NFC_CONN_ID_ID_MASK;
144 if (id < NFC_MAX_CONN_ID)
146 handle = nfc_cb.conn_id[id];
    [all...]
  /external/libvncserver/examples/
repeater.c 14 char id[250]; local
23 "Usage: %s <id> <repeater-host> [<repeater-port>]\n", argv[0]);
26 snprintf(id, sizeof(id) - 1, "ID:%s", argv[1]);
51 if (write(sock, id, sizeof(id)) != sizeof(id)) {
52 perror("writing id");
  /external/libweave/include/weave/
enum_to_string.h 29 const T id; member in struct:weave::final::Map
48 std::string EnumToString(T id) {
50 if (m.id == id) {
55 NOTREACHED() << static_cast<int>(id);
60 bool StringToEnum(const std::string& name, T* id) {
63 *id = m.id;

Completed in 839 milliseconds

<<11121314151617181920>>