HomeSort by relevance Sort by last modified time
    Searched defs:pe (Results 1 - 25 of 319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/debug/pe/
string.go 5 package pe package
file_test.go 5 package pe package
284 filename := "file.go" // not a PE file
section.go 5 package pe package
14 // SectionHeader32 represents real PE COFF section header.
44 // Reloc represents a PE COFF relocation.
83 // Section provides access to PE COFF section.
98 // Data reads and returns the contents of the PE section s.
108 // Open returns a new ReadSeeker reading the PE section s.
symbol.go 5 package pe package
file.go 5 // Package pe implements access to PE (Microsoft Windows Portable Executable) files.
6 package pe package
19 // A File represents an open PE file.
31 // Open opens the named file using os.Open and prepares it for use as a PE binary.
65 // NewFile creates a new File for accessing a PE binary in an underlying reader.
80 return nil, fmt.Errorf("Invalid PE COFF file signature of %v.", sign)
335 // cgo -dynimport don't use this for windows PE, so just return.
  /prebuilts/go/linux-x86/src/debug/pe/
string.go 5 package pe package
file_test.go 5 package pe package
284 filename := "file.go" // not a PE file
section.go 5 package pe package
14 // SectionHeader32 represents real PE COFF section header.
44 // Reloc represents a PE COFF relocation.
83 // Section provides access to PE COFF section.
98 // Data reads and returns the contents of the PE section s.
108 // Open returns a new ReadSeeker reading the PE section s.
symbol.go 5 package pe package
file.go 5 // Package pe implements access to PE (Microsoft Windows Portable Executable) files.
6 package pe package
19 // A File represents an open PE file.
31 // Open opens the named file using os.Open and prepares it for use as a PE binary.
65 // NewFile creates a new File for accessing a PE binary in an underlying reader.
80 return nil, fmt.Errorf("Invalid PE COFF file signature of %v.", sign)
335 // cgo -dynimport don't use this for windows PE, so just return.
  /external/iproute2/lib/
inet_proto.c 30 struct protoent *pe; local
35 pe = getprotobynumber(proto);
36 if (pe) {
38 strncpy(ncache, pe->p_name, 16);
39 strncpy(buf, pe->p_name, len);
50 struct protoent *pe; local
62 pe = getprotobyname(buf);
63 if (pe) {
64 icache = pe->p_proto;
65 strncpy(ncache, pe->p_name, 16)
    [all...]
  /system/bt/bta/mce/
bta_mce_act.cc 76 tSDP_PROTOCOL_ELEM pe; local
85 if (!SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
88 evt_data.mas[found].scn = pe.params[0];
  /external/guice/core/test/com/google/inject/
ProvisionExceptionsTest.java 47 } catch(ProvisionException pe) {
49 Asserts.assertContains(pe.getMessage(),
51 assertEquals(1, pe.getErrorMessages().size());
52 assertEquals(IllegalStateException.class, pe.getCause().getClass());
53 assertEquals(IllegalStateException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
69 } catch(ProvisionException pe) {
71 Asserts.assertContains(pe.getMessage(),
73 assertEquals(1, pe.getErrorMessages().size());
74 assertEquals(IOException.class, pe.getCause().getClass());
75 assertEquals(IOException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass())
    [all...]
  /external/aac/libAACenc/src/
line_pe.h 104 INT sfbPe[MAX_GROUPED_SFB]; /* pe for each sfb */
107 INT pe; /* sum of sfbPe */ member in struct:__anon12942
114 INT pe; member in struct:__anon12943
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
line_pe.h 34 Word16 sfbPe[MAX_GROUPED_SFB]; /* pe for each sfb */
37 Word16 pe; /* sum of sfbPe */ member in struct:__anon38265
45 Word16 pe; member in struct:__anon38266
  /system/extras/tests/icachetest/
Profiler.cpp 80 struct perf_event_attr pe; variable in typeref:struct:utils::perf_event_attr
81 memset(&pe, 0, sizeof(struct perf_event_attr));
82 pe.type = PERF_TYPE_HARDWARE;
83 pe.size = sizeof(struct perf_event_attr);
84 pe.config = PERF_COUNT_HW_INSTRUCTIONS;
85 pe.disabled = 1;
86 pe.exclude_kernel = 1;
87 pe.exclude_hv = 1;
88 pe.read_format = PERF_FORMAT_GROUP |
94 int fd = perf_event_open(&pe, 0, -1, -1, 0)
    [all...]
  /external/ltp/testcases/kernel/syscalls/perf_event_open/
perf_event_open01.c 79 static struct perf_event_attr pe; variable in typeref:struct:perf_event_attr
114 pe.size = sizeof(struct perf_event_attr);
115 pe.disabled = 1;
116 pe.exclude_kernel = 1;
117 pe.exclude_hv = 1;
147 pe.type = tc->type;
148 pe.config = tc->config;
150 TEST(perf_event_open(&pe, 0, -1, -1, 0));
  /libcore/ojluni/src/main/java/sun/security/util/
PropertyExpander.java 81 int pe = p+2; local
84 if (pe < max && value.charAt(pe) == '{') {
85 pe = value.indexOf("}}", pe);
86 if (pe == -1 || pe+2 == max) {
92 pe++;
93 sb.append(value.substring(p, pe+1));
96 while ((pe < max) && (value.charAt(pe) != '}'))
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.hh 448 const char *p = buf, *pe = buf + buf_len; local
453 while (p < pe && ISSPACE (*p))
455 if (p < pe && *p == (buffer->len ? ',' : '['))
476 if ( p == pe )
629 if ( ++p != pe )
640 return p == pe && *(p-1) != ']';
hb-buffer-deserialize-text.hh 325 const char *p = buf, *pe = buf + buf_len; local
330 while (p < pe && ISSPACE (*p))
332 if (p < pe && *p == (buffer->len ? '|' : '['))
337 const char *eof = pe, *tok = NULL;
353 if ( p == pe )
485 if ( ++p != pe )
568 return p == pe && *(p-1) != ']';
hb-ot-shape-complex-indic-machine.hh 1377 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
    [all...]
hb-ot-shape-complex-myanmar-machine.hh 284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
300 pe = eof = buffer->len;
311 if ( p == pe )
381 if ( ++p != pe )
hb-ot-shape-complex-use-machine.hh 310 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
326 pe = eof = buffer->len;
337 if ( p == pe )
431 if ( ++p != pe )
  /external/ltp/testcases/kernel/connectors/pec/
pec_listener.c 185 struct proc_event *pe; local
189 pe = (struct proc_event *)msg->data;
191 switch (pe->what) {
193 printf("none err: %u\n", pe->event_data.ack.err);
197 pe->event_data.fork.parent_pid,
198 pe->event_data.fork.child_pid);
201 printf("exec pid: %d\n", pe->event_data.exec.process_pid);
205 pe->event_data.id.process_pid,
206 pe->event_data.id.e.euid, pe->event_data.id.r.ruid)
    [all...]
  /external/skia/third_party/harfbuzz/
hb-buffer-deserialize-json.hh 448 const char *p = buf, *pe = buf + buf_len; local
453 while (p < pe && ISSPACE (*p))
455 if (p < pe && *p == (buffer->len ? ',' : '['))
476 if ( p == pe )
629 if ( ++p != pe )
640 return p == pe && *(p-1) != ']';

Completed in 841 milliseconds

1 2 3 4 5 6 7 8 91011>>