HomeSort by relevance Sort by last modified time
    Searched refs:ph (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /external/chromium_org/chrome/browser/component_updater/
component_patcher_win.cc 100 // |ph| is closed by WaitForExitCode.
101 base::ProcessHandle ph = base::kNullProcessHandle; local
103 if (!base::LaunchProcess(setup_path, launch_options, &ph) ||
104 !base::WaitForExitCode(ph, &exit_code)) {
  /external/tcpdump/
print-dccp.c 73 } ph; member in union:phu
79 phu.ph.mbz = 0;
80 phu.ph.len = htons(len);
81 phu.ph.proto = IPPROTO_DCCP;
82 memcpy(&phu.ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
84 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
86 phu.ph.dst = ip_finddst(ip);
105 } ph; member in union:__anon28664
111 phu.ph.ph_src = ip6->ip6_src;
112 phu.ph.ph_dst = ip6->ip6_dst
    [all...]
print-tcp.c 125 } ph; member in union:phu
131 phu.ph.len = htons((u_int16_t)len);
132 phu.ph.mbz = 0;
133 phu.ph.proto = IPPROTO_TCP;
134 memcpy(&phu.ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
136 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
138 phu.ph.dst = ip_finddst(ip);
159 } ph; member in union:__anon28700
165 phu.ph.ph_src = ip6->ip6_src;
166 phu.ph.ph_dst = ip6->ip6_dst
    [all...]
print-udp.c 298 } ph; member in union:phu
304 phu.ph.len = htons((u_int16_t)len);
305 phu.ph.mbz = 0;
306 phu.ph.proto = IPPROTO_UDP;
307 memcpy(&phu.ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
309 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
311 phu.ph.dst = ip_finddst(ip);
332 } ph; member in union:__anon28703
338 phu.ph.ph_src = ip6->ip6_src;
339 phu.ph.ph_dst = ip6->ip6_dst
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
policy_json_unittest.py 154 <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
162 expected = eval(re.sub('<ph.*ph>', '$1', original))
167 ph = msg.GetPlaceholders()[0]
168 self.failUnless(ph.GetOriginal() == '$1')
169 self.failUnless(ph.GetPresentation() == 'PRODUCT_NAME')
170 self.failUnless(ph.GetExample() == 'Google Chrome')
skeleton_gatherer.py 107 ph = tclib.Placeholder('XX%02dXX' % self.ph_counter_, chunk, chunk)
109 self.single_message_.AppendPlaceholder(ph)
policy_json.py 33 <ph name="PLACEHOLDER_NAME">Placeholder text<ex>Example value</ex></ph>
76 if child.tagName == 'ph':
105 if child.tagName == 'ph':
  /external/srec/audio/AudioIn/UNIX/src/
filter.c 232 typeCoeff const *ph; // pointer to coefficients local
242 ph = pFIR->h; // point to coefficients
265 accum += *ph++ * *pz++;
273 accum += *ph++ * *pz++;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 67 public void setPanelHolder(PanelHolder ph) {
68 if (ph == null) {
72 ph.setBar(this);
73 mPanelHolder = ph;
74 final int N = ph.getChildCount();
76 final View v = ph.getChildAt(i);
PhoneStatusBarView.java 237 final float ph = panel.getExpandedHeight() + panel.getPaddingBottom(); local
239 if (ph < 2*H) {
240 if (ph < H) alpha = 0f;
241 else alpha = (ph - H) / H;
  /external/pixman/pixman/
pixman-mips-dspr2-asm.S 51 replv.ph a2, a2 /* replicate fill value (16bit) in a2 */
354 packrl.ph t3, t1, t0 /* t3 = G2 | B2 | B1 | R2 */
355 packrl.ph t4, t0, t0 /* t4 = R1 | G1 | B1 | R2 */
360 packrl.ph t5, t2, t1 /* t5 = B3 | R4 | R3 | G3 */
393 packrl.ph t3, t1, t0 /* t3 = G3 | B3 | B2 | R3 */
394 packrl.ph t4, t2, t1 /* t4 = B4 | R5 | R4 | G4 */
428 precr_sra.ph.w t7, t0, 0 /* t7 = R1 | G1 | B1 | R2 */
430 packrl.ph t3, t2, t1 /* t3 = G4 | B4 | B3 | R4 */
463 precr_sra.ph.w t7, t0, 0 /* t7 = xx | R1 | G1 | B1 */
464 packrl.ph t3, t1, t0 /* t3 = B2 | R3 | R2 | G2 *
    [all...]
  /bionic/libthread_db/
libthread_db.c 13 extern pid_t ps_getpid(struct ps_prochandle *ph);
49 agent->ph = proc_handle;
154 th->pid = ps_getpid(agent->ph);
  /external/chromium_org/chrome/browser/first_run/
first_run_internal_win.cc 49 base::ProcessHandle ph; local
76 if (!base::LaunchProcess(setup_path, base::LaunchOptions(), &ph) ||
77 !base::WaitForExitCode(ph, &exit_code)) {
  /external/chromium_org/tools/grit/grit/extern/
tclib.py 206 ph = source_msg.GetPlaceholder(item.GetPresentation())
207 if not ph:
211 original_content += ph.GetOriginal()
300 for ph in self.GetPlaceholders():
301 for pos in FindOverlapping(presentation, ph.GetPresentation()):
305 and not IsSubstringInPlaceholder(pos, len(ph.GetPresentation()), phs))
307 (other_ph and len(other_ph.GetPresentation()) < len(ph.GetPresentation()))):
309 ph.GetPresentation(), presentation)
  /external/linux-tools-perf/util/
header.h 55 struct perf_header *ph, int fd);
85 struct perf_header *ph,
header.c 584 struct perf_header *ph,
625 struct perf_header *ph, int fd)
641 ph->needs_swap = true;
652 memcpy(&ph->adds_features, &header->adds_features,
653 sizeof(ph->adds_features));
661 if (ph->needs_swap) {
662 memset(&ph->adds_features, 0, sizeof(ph->adds_features));
663 perf_header__set_feat(ph, HEADER_BUILD_ID);
666 ph->event_offset = header->event_types.offset
    [all...]
  /external/svox/pico/tts/
svox_ssml_parser.cpp 168 char16_t* ph = NULL; local
182 if (strcmp(attributes[i], "ph") == 0)
184 ph = new char16_t[strlen8to16(attributes[i+1]) + 1];
185 ph = strdup8to16(attributes[i+1], &phsize);
188 if (!ph)
191 ALOGE("Error: bad SSML syntax, ph attribute not supplied.");
198 xsampasize = cnvIpaToXsampa(ph, phsize, &xsampastr);
199 delete [] ph;
208 xsampastr = strndup16to8(ph, phsize);
210 delete [] ph;
    [all...]
  /external/chromium/chrome/browser/first_run/
first_run_win.cc 137 base::ProcessHandle ph; local
146 if (!base::LaunchApp(cl, false, false, &ph))
148 DWORD wr = ::WaitForSingleObject(ph, INFINITE);
151 return (TRUE == ::GetExitCodeProcess(ph, reinterpret_cast<DWORD*>(ret_code)));
  /ndk/sources/android/libthread_db/gdb-7.3.x/
libthread_db.c 25 extern pid_t ps_getpid(struct ps_prochandle *ph);
196 agent->ph = proc_handle;
272 th->pid = ps_getpid(agent->ph);
  /ndk/sources/android/libthread_db/gdb-7.6/
libthread_db.c 37 extern pid_t ps_getpid(struct ps_prochandle *ph);
209 agent->ph = proc_handle;
285 th->pid = ps_getpid(agent->ph);
  /external/chromium_org/tools/grit/grit/
clique.py 225 for ph in original_msg.GetPlaceholders():
226 if ph.GetPresentation() == text:
228 ph.GetPresentation(), ph.GetOriginal(), ph.GetExample()))
233 'Translation for message ID %s had <ph name="%s"/>, no match\n'
exception.py 68 '''Only one <ex> element is allowed for each <ph> element.'''
  /external/elfutils/libdwfl/
dwfl_module_getdwarf.c 99 GElf_Phdr *ph = gelf_getphdr (file->elf, i, &ph_mem); local
100 if (ph == NULL)
102 if (ph->p_type == PT_LOAD)
104 file->bias = ((mod->low_addr & -ph->p_align)
105 - (ph->p_vaddr & -ph->p_align));
  /bionic/libthread_db/include/
thread_db.h 70 struct ps_prochandle *ph; member in struct:__anon766
  /development/ndk/platforms/android-9/include/
thread_db.h 72 struct ps_prochandle *ph; member in struct:__anon1528

Completed in 849 milliseconds

12 3 4 5