MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / StartEntry

Method StartEntry

Bcore/src/main/cpp/ziparchive/zip_writer.cc:131–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131int32_t ZipWriter::StartEntry(const char* path, size_t flags) {
132 uint32_t alignment = 0;
133 if (flags & kAlign32) {
134 flags &= ~kAlign32;
135 alignment = 4;
136 }
137 return StartAlignedEntryWithTime(path, flags, time_t(), alignment);
138}
139
140int32_t ZipWriter::StartAlignedEntry(const char* path, size_t flags, uint32_t alignment) {
141 return StartAlignedEntryWithTime(path, flags, time_t(), alignment);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected