HomeSort by relevance Sort by last modified time
    Searched refs:mh (Results 1 - 25 of 31) sorted by null

1 2

  /external/tcpdump/
print-mobility.c 56 u_int16_t ip6m_cksum; /* sum of IPv6 pseudo-header and MH */
173 const struct ip6_mobility *mh; local
177 mh = (struct ip6_mobility *)bp;
182 if (!TTEST(mh->ip6m_len)) {
198 mhlen = (int)((mh->ip6m_len + 1) << 3);
202 TCHECK(mh->ip6m_type);
203 type = mh->ip6m_type;
215 TCHECK2(*mh, hlen + 8);
227 TCHECK(mh->ip6m_data16[0]);
228 printf(" nonce id=0x%x", EXTRACT_16BITS(&mh->ip6m_data16[0]))
    [all...]
sctpHeader.h 169 struct sctpHeader mh; member in struct:sctpSendableInit
235 struct sctpHeader mh; member in struct:sctpUnifiedAbortLight
240 struct sctpHeader mh; member in struct:sctpUnifiedAbortHeavy
273 struct sctpHeader mh; member in struct:sctpUnifiedStreamError
281 struct sctpHeader mh; member in struct:staleCookieMsg
292 struct sctpHeader mh; member in struct:sctpUnifiedSingleMsg
print-juniper.c 288 const struct juniper_monitor_header *mh; local
295 mh = (struct juniper_monitor_header *)p;
299 EXTRACT_32BITS(&mh->service_id),
300 EXTRACT_16BITS(&mh->iif),
301 mh->pkt_type);
  /hardware/ril/mock-ril/src/cpp/
ctrl_server.cpp 116 int ReadMessage(MsgHeader *mh, Buffer **pBuffer) {
131 mh->ParseFromArray(msg_header_raw, len_msg_header);
135 if (mh->length_data() > 0) {
136 buffer = ObtainBuffer(mh->length_data());
150 int WriteMessage(MsgHeader *mh, Buffer *buffer) {
157 mh->set_length_data(0);
159 mh->set_length_data(buffer->length());
163 uint32_t len_msg_header = mh->ByteSize();
165 mh->SerializeToArray(msg_header_raw, len_msg_header);
177 if (mh->length_data() > 0)
347 MsgHeader mh; local
401 MsgHeader mh; local
    [all...]
  /hardware/ril/mock-ril/src/java/com/android/internal/communication/
Msg.java 40 * @param mh is message header to write
43 private static void sendHeader(RilChannel rc, MsgHeader mh) throws IOException {
46 lenBuffer.putInt(mh.getSerializedSize());
48 ByteBuffer mhBuffer = ByteBuffer.allocateDirect(mh.getCachedSize());
49 mhBuffer.put(mh.toByteArray());
69 MsgHeader mh = MsgHeader.parseFrom(mhBuffer.array()); local
70 return mh;
98 * @param mh header
102 public static final void send(RilChannel rc, MsgHeader mh, ByteBuffer data)
112 mh.setLengthData(lenData)
131 MsgHeader mh = new MsgHeader(); local
    [all...]
  /hardware/ril/mock-ril/src/python/
tcs.py 84 mh = msgheader_pb2.MsgHeader()
85 mh.cmd = self.cmd
86 mh.token = self.token
87 mh.status = self.status
88 mh.length_data = self.length_protobuf
89 mhser = mh.SerializeToString()
98 mh = msgheader_pb2.MsgHeader()
100 mh.ParseFromString(mh_raw)
101 self.cmd = mh.cmd
102 self.token = mh.toke
    [all...]
  /external/openssl/crypto/
mem_dbg.c 139 static LHASH_OF(MEM) *mh=NULL; /* hash-table of memory requests
505 if (mh == NULL)
507 if ((mh=lh_MEM_new()) == NULL)
551 if ((mm=lh_MEM_insert(mh, m)) != NULL)
579 if (is_MemCheck_on() && (mh != NULL))
584 mp=lh_MEM_delete(mh,&m);
634 mp=lh_MEM_delete(mh,&m);
645 (void)lh_MEM_insert(mh,mp);
760 if (mh == NULL && amih == NULL)
768 if (mh != NULL
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/mockril/
MockRilTest.java 85 MsgHeader mh = new MsgHeader(); local
86 mh.setCmd(0);
87 mh.setToken(1);
88 mh.setStatus(2);
93 Msg.send(mMockRilChannel, mh, data);
119 MsgHeader mh = new MsgHeader(); local
120 mh.setCmd(12345);
121 mh.setToken(9876);
122 mh.setStatus(7654);
123 mh.setLengthData(4321)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/macosx/
SDL_dlcompat.c 243 static NSSymbol search_linked_libs(const struct mach_header *mh, const char *symbol);
244 static const char *get_lib_name(const struct mach_header *mh);
313 static const char *get_lib_name(const struct mach_header *mh)
318 if (mh)
322 if (mh == _dyld_get_image_header(i))
339 const struct mach_header *mh = NULL; local
347 mh = _dyld_get_image_header(i);
351 return mh;
562 const struct mach_header *mh = 0; local
566 mh = (struct mach_header *
1194 const struct mach_header *mh = 0; local
    [all...]
  /external/valgrind/main/coregrind/
launcher-darwin.c 160 struct mach_header *mh = (struct mach_header *)buf; local
161 if (mh->magic == MH_MAGIC || mh->magic == MH_MAGIC_64) {
162 return name_for_cputype(mh->cputype);
163 } else if (mh->magic == MH_CIGAM || mh->magic == MH_CIGAM_64) {
164 return name_for_cputype(OSSwapInt32(mh->cputype));
  /external/valgrind/main/coregrind/m_ume/
macho.c 435 struct MACH_HEADER mh; local
454 if (sizeof(mh) > size) {
457 res = VG_(pread)(fd, &mh, sizeof(mh), offset);
458 if (sr_isError(res) || sr_Res(res) != sizeof(mh)) {
465 if (mh.magic != MAGIC) {
470 if (mh.filetype != filetype) {
478 len = sizeof(mh) + mh.sizeofcmds;
497 lcend = (struct load_command *)(headers + mh.sizeofcmds + sizeof(mh))
    [all...]
  /external/webrtc/src/modules/audio_processing/utility/
fft4g.c 487 int j, k, l, m, mh, nw, nc; local
507 mh = m >> 1;
508 for (j = 1; j < mh; j++) {
519 t[mh] = a[mh] + a[n - mh];
520 a[mh] -= a[n - mh];
536 m = mh;
555 mh = m >> 1
583 int j, k, l, m, mh, nw, nc; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 122 const struct MACH_HEADER* mh = buf; local
132 if (mh->magic == MAGIC)
198 struct MACH_HEADER* mh; local
284 mh = (struct MACH_HEADER *)ii->macho_img;
285 if (mh->magic != MAGIC) {
290 if (ii->macho_img_szB < sizeof(struct MACH_HEADER) + mh->sizeofcmds) {
598 struct MACH_HEADER *mh = (struct MACH_HEADER *)base; local
602 for (c = 0, cmd = (struct load_command *)(mh+1);
603 c < mh->ncmds;
711 { struct MACH_HEADER *mh = (struct MACH_HEADER *)ii.macho_img local
    [all...]
  /external/icu4c/extra/scrptrun/
Makefile 14 include $(top_srcdir)/config/mh-linux
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserFactoryTest.java 234 MyHandler mh = new MyHandler(); local
238 spf.newSAXParser().parse(is, mh);
243 spf.newSAXParser().parse(is, mh);
261 // MyHandler mh = new MyHandler();
266 // spf.newSAXParser().parse(is2, mh);
281 // spf.newSAXParser().parse(is3, mh);
297 // spf.newSAXParser().parse(is2, mh);
312 // spf.newSAXParser().parse(is3, mh);
328 // MyHandler mh = new MyHandler();
331 // spf.newSAXParser().parse(is, mh);
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 6205 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6398 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6476 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6495 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6509 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6638 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6654 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6677 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6709 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6868 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6923 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
7021 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
    [all...]
  /external/icu4c/samples/
Makefile 17 include $(top_srcdir)/config/mh-linux
  /system/core/libnl_2/
netlink.c 223 struct msghdr mh = { local
234 rc = nl_sendmsg(sk, (struct nl_msg *) &mh, 0);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_view_single.c 293 Evas_Coord mx, my, mw, mh, ax, ay, aw, ah, bx, by, bw, bh; local
309 mh = sh + sr->dy;
310 by = my + mh;
316 mh = sh - sr->dy;
320 ah = mh;
326 sr->dx, sr->dy, mx, my, mw, mh, ax, ay, aw, ah, bx, by, bw, bh);
331 evas_object_image_data_update_add(sd->backing_store, mx, my, mw, mh);
  /external/icu4c/samples/layout/
Makefile 14 include $(top_srcdir)/config/mh-linux
82 # they were copied from the default rules in mh-linux which
  /external/openssl/crypto/bn/
bn_asm.c 851 BN_ULONG mh; local
866 mh = HBITS(ml);
869 mul(tp[j],ap[j],ml,mh,c0);
884 mh = HBITS(ml);
887 mul_add(tp[j],ap[j],ml,mh,c0);
900 mh = HBITS(ml);
902 mul_add(c1,np[0],ml,mh,c0);
910 mul_add(c1,np[j],ml,mh,c0);
  /external/svox/pico/lib/
picofftsg.c 532 picoos_int32 j, k, m, mh; local
549 mh = m >> 1;
556 for (j = 1; j < mh; j++, aj++, ak--, amj++, amk--) {
570 m = mh;
1707 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
2034 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
2248 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
    [all...]
  /external/icu4c/
configure     [all...]
configure.orig     [all...]
config.status 616 s,@platform_make_fragment_name@,mh-linux,;t t
617 s,@platform_make_fragment@,$(top_srcdir)/config/mh-linux,;t t
    [all...]

Completed in 461 milliseconds

1 2