OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PatchFormatException
(Results
1 - 6
of
6
) sorted by null
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
PatchFormatException.java
23
public class
PatchFormatException
extends IOException {
29
public
PatchFormatException
(String message) {
38
public
PatchFormatException
(String message, Throwable cause) {
PatchReader.java
56
throw new
PatchFormatException
("Bad identifier");
72
throw new
PatchFormatException
("old file uncompression ranges out of order or overlapping");
94
throw new
PatchFormatException
(
161
* @throws
PatchFormatException
if the value is not ok
164
throws
PatchFormatException
{
166
throw new
PatchFormatException
("Bad value for " + description + ": " + value);
178
* @throws
PatchFormatException
if the value is not ok
181
throws
PatchFormatException
{
183
throw new
PatchFormatException
(
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/
BsPatch.java
17
import com.google.archivepatcher.applier.
PatchFormatException
;
70
* @throws
PatchFormatException
if the patch stream is invalid
75
throws
PatchFormatException
, IOException {
88
* @throws
PatchFormatException
if the patch stream is invalid
93
throws
PatchFormatException
, IOException {
109
throws
PatchFormatException
, IOException {
114
throw new
PatchFormatException
("truncated signature");
119
throw new
PatchFormatException
("bad signature");
125
throw new
PatchFormatException
("bad oldSize");
129
throw new
PatchFormatException
("bad newSize")
[
all
...]
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
PatchReaderTest.java
237
@Test(expected =
PatchFormatException
.class)
243
@Test(expected =
PatchFormatException
.class)
249
@Test(expected =
PatchFormatException
.class)
256
@Test(expected =
PatchFormatException
.class)
263
@Test(expected =
PatchFormatException
.class)
270
@Test(expected =
PatchFormatException
.class)
277
@Test(expected =
PatchFormatException
.class)
284
@Test(expected =
PatchFormatException
.class)
291
@Test(expected =
PatchFormatException
.class)
298
@Test(expected =
PatchFormatException
.class
[
all
...]
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/
BsPatchTest.java
17
import com.google.archivepatcher.applier.
PatchFormatException
;
173
} catch (
PatchFormatException
expected) {
196
} catch (
PatchFormatException
expected) {
219
} catch (
PatchFormatException
expected) {
243
} catch (
PatchFormatException
expected) {
266
} catch (
PatchFormatException
expected) {
289
} catch (
PatchFormatException
expected) {
312
} catch (
PatchFormatException
expected) {
335
} catch (
PatchFormatException
expected) {
361
} catch (
PatchFormatException
expected)
[
all
...]
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/gdiff/
Gdiff.java
17
import com.google.archivepatcher.applier.
PatchFormatException
;
94
throw new
PatchFormatException
("Unexpected magic=" + String.format("%x", magic));
99
throw new
PatchFormatException
("Unexpected version=" + version);
Completed in 218 milliseconds